Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *Set no sidebar layout on blog home page.
- */
- add_filter(
- 'astra_page_layout',
- function ( $sidebar ) {
- if ( is_home() ) {
- $sidebar = 'no-sidebar';
- }
- return $sidebar;
- }
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement