Display teaser images before title?
-
I’ve been going crazy trying to figure out how to display the teaser thumbnails above the post title instead of below it. As of right now, I managed to get it to show above the title, but it’s also showing below. This is the function I used:
// Move Image Above Post Title function be_teaser_thumbnail( ) { if( in_array( 'one-third', get_post_class() ) ) remove_action( 'genesis_post_content', 'genesis_do_post_image' ); add_action( 'genesis_before_post_title', 'genesis_do_post_image' ); } add_filter( 'genesis_pre_get_option_image_size', 'be_teaser_thumbnail' );
That made it display but didn’t remove the image inside the post content. I’d appreciate any help with what I’m doing wrong and how to fix it!
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Display teaser images before title?’ is closed to new replies.