Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Code to Display Featured Image on top of the post */
- add_action( 'genesis_before_entry', 'featured_post_image', 8 );
- function featured_post_image() {
- if ( ! is_singular( 'post' ) ) return;
- the_post_thumbnail('post-image');
- }
Add Comment
Please, Sign In to add comment