aouwalcmc

Code to Display Featured Image on top of the post

May 4th, 2018
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. /* Code to Display Featured Image on top of the post */
  2. add_action( 'genesis_before_entry', 'featured_post_image', 8 );
  3. function featured_post_image() {
  4. if ( ! is_singular( 'post' ) ) return;
  5. the_post_thumbnail('post-image');
  6. }
Add Comment
Please, Sign In to add comment