• Hi, great plugin, thanks so much for making it. I’m wondering if you could help me with some information. I have a page /my-favorites/ that loads all Blog Posts bookmarked. I’m wondering if it’s possible to also load the image post besides the post title.

    I can provide a link if necessary. Thanks so much for your help, and I appreciate you taking the time to answer these questions.

Viewing 1 replies (of 1 total)
  • Yes, you can do it in a loop, something like that:

    <?php while (have_posts()) : the_post(); ?>
    
        <?php echo get_the_post_thumbnail($id, 'post-thumbnail'); ?>
        <?php echo do_shortcode( '[favorite_button post_id="" site_id=""]' ); ?>
    
    <?php endwhile; ?>
    • This reply was modified 7 years, 11 months ago by oritzio.
Viewing 1 replies (of 1 total)
  • The topic ‘Load Post Images’ is closed to new replies.