Advertisement
Guest User

Untitled

a guest
Apr 5th, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. function show_full_width_header_on_boxed_layout(){
  4.     echo '</div>';
  5.     echo '<div class="kleo-page page-boxed">';
  6. }
  7. add_action('kleo_header', 'show_full_width_header_on_boxed_layout', 9999);
  8. function show_full_width_footer_on_boxed_layout($sidebar){
  9.     if($sidebar == 'footer'){
  10.         echo '</div>';
  11.         echo '<div class="kleo-page">';
  12.     }
  13. }
  14. add_action('get_sidebar', 'show_full_width_footer_on_boxed_layout', 9999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement