Advertisement
srikat

Untitled

Feb 27th, 2014
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_action ( 'genesis_before_header', 'sk_add_banner_image' );
  2. function sk_add_banner_image() {
  3.  
  4.     if ( has_post_thumbnail() ) {
  5.  
  6.         echo '<div class="banner-image">
  7.                 <div class="wrap">
  8.                     <img src="' . genesis_get_image( array( 'format' => 'url' ) ) . '" />
  9.                 </div>
  10.             </div>';
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement