Advertisement
srikat

functions.php

May 17th, 2015
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action( 'get_header', 'sk_set_404_layout' );
  2. /**
  3. * Force full width content on 404 pages
  4. *
  5. * @author Sridhar Katakam
  6. * @link http://sridharkatakam.com/
  7. */
  8. function sk_set_404_layout() {
  9. if ( ! is_404() ) {
  10. return;
  11. }
  12.  
  13. add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement