Advertisement
srikat

Untitled

Jun 3rd, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // Apply Full Width Content layout to Posts page, Single Posts and Archives.
  2. add_action( 'get_header', 'sk_set_full_layout' );
  3. function sk_set_full_layout() {
  4. if ( ! ( is_home() || is_singular( 'post' ) || is_archive() ) ) {
  5. return;
  6. }
  7. // Force full width content
  8. add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement