Advertisement
Guest User

Untitled

a guest
Mar 8th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2. function custom_full_width_header_on_boxed_page(){
  3.     if(is_front_page()){
  4.         $site_style = sq_option('site_style', 'wide') == 'boxed' ? ' page-boxed' : '';
  5.         $site_style = apply_filters('kleo_site_style', $site_style);
  6.         echo '</div>';
  7.         echo '<div class="custom-full-width-header-on-boxed-page">';
  8.         echo do_shortcode('[rev_slider HomeFullwidth]');
  9.         echo '</div>';
  10.         echo '<div class="kleo-page' . $site_style . '">';
  11.     }
  12. }
  13. add_action('kleo_header', 'custom_full_width_header_on_boxed_page', 9999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement