[Resolved] Add featured image to Sidebar? Or to use hooks to add to before sidebar

Home Forums Support [Resolved] Add featured image to Sidebar? Or to use hooks to add to before sidebar

Home Forums Support Add featured image to Sidebar? Or to use hooks to add to before sidebar

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #574091
    Stacey

    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

    #574235
    Tom
    Lead Developer
    Lead Developer

    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 ๐Ÿ™‚

    #574981
    Stacey

    Hi Tom

    Thank you so much for this!! It’s worked perfectly.

    I really appreciate the support.

    #575158
    Tom
    Lead Developer
    Lead Developer

    Awesome, glad I could help ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.