Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. //* Only display sidebar on single posts
  2. add_filter( 'genesis_pre_get_option_site_layout', 'content_sidebar_layout_single_posts' );
  3. function content_sidebar_layout_single_posts( $opt ) {
  4. if ( is_single() ) {
  5. $opt = 'content-sidebar';
  6. return $opt;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement