Advertisement
srikat

Untitled

Sep 1st, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function sk_featured_image_above_title_blog() {
  2.  
  3.     if ( is_front_page() ) {
  4.         return;
  5.     }
  6.  
  7.     if ( ! ( is_home() || is_archive() ) ) {
  8.         return;
  9.     }
  10.  
  11.     // Get the URL of featured image
  12.     $image = genesis_get_image( 'format=url' );
  13.  
  14.     if ( ! $image ) {
  15.         return;
  16.     }
  17.  
  18.     // Display featured image
  19.     printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement