Guest User

Untitled

a guest
Mar 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. //* Do NOT include the opening php tag
  3.  
  4. //* Display featured image after single entry header.
  5. add_action( 'genesis_entry_header', 'featured_post_image', 15 );
  6. function featured_post_image() {
  7. if ( ! is_singular( 'post' ) ) return;
  8. the_post_thumbnail('large');
  9. }
Add Comment
Please, Sign In to add comment