Advertisement
srikat

page.php

Aug 28th, 2013
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'genesis_after_header', 'agency_home_welcome_helper' );
  4.  
  5. function agency_home_welcome_helper() {
  6.  
  7.     if (has_post_thumbnail( $post->ID ) ) :
  8.         echo get_the_post_thumbnail($post->ID);
  9.  
  10.     else :
  11.  
  12.         if ( is_active_sidebar( 'home-slider' ) ) :
  13.             echo '<div id="home-slider">';
  14.             dynamic_sidebar( 'home-slider' );
  15.             echo '</div><!-- end #home-slider -->';
  16.  
  17.         endif;
  18.  
  19.     endif;
  20.  
  21. }
  22.  
  23. genesis();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement