Site logo

[Resolved] Add featured image for home page (latest posts)

Home Forums Support [Resolved] Add featured image for home page (latest posts)

Home Forums Support Add featured image for home page (latest posts)

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #257154
    Paul

    I’m sure I’ve seen a solution to this on these forums, but can’t find it.

    Our site is set to show the latest posts on the home page, which means there’s no actual page where we can set a featured image. How can we can add one?

    We don’t actually want the image to show on the home page – it’s just for sharing on social, where we want to select an image to appear. At the moment, if we share the home page it seems to grab the image from the first post on the page.

    #257214
    Tom
    Lead Developer
    Lead Developer

    Hi Paul,

    Since you’re just wanted to set an image for social sites to see, you could add this into the wp_head hook in GP Hooks:

    <?php if ( is_home() ) : ?>
        <meta property="og:image" content="URL TO YOUR IMAGE"/>
    <?php endif; ?>

    is_home() targets the blog page.

    Let me know if you need more info 🙂

    #257422
    Paul

    Perfect, thanks Tom!

    #257484
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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