empathik

Force Full Width Page Template Genesis

Feb 3rd, 2012
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. /*
  3. * Template Name: Force Full Width
  4. * Forces full width of Genesis page, especially needed for some plug-ins.
  5. */
  6.  
  7.  
  8. add_filter( 'genesis_site_layout', 'go_full_layout' );
  9.  
  10. function go_full_layout($opt) {
  11. $opt = 'full-width-content';
  12. return $opt;
  13. }
  14.  
  15. genesis(); //
Advertisement
Add Comment
Please, Sign In to add comment