Archived topic
Add featured image to Sidebar? Or to use hooks to add to before sidebar
3 replies · Started by Stacey on May 12, 2018
Hi
I'm trying to replicate this site http://smehrservices.co.uk/who-we-are/
in Generate Press. On the inside pages I have the featured image in the left hand sidebar.
Is there a way to add this in GeneratePress - or can you help me with the code to add it in to generate_before_left_sidebar_content hook (which I think is what I need from looking at the docs)
Thanks
Hi there,
Yea, let's try this:
add_action( 'generate_before_left_sidebar_content', 'tu_add_sidebar_featured_image' );
function tu_add_sidebar_featured_image() {
if ( is_singular() && has_post_thumbnail() ) {
the_post_thumbnail();
}
}
Let me know :)
Hi Tom
Thank you so much for this!! It's worked perfectly.
I really appreciate the support.
Awesome, glad I could help :)