Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mickey Kay

    (@mcguive7)

    Hi there,

    While this isn’t built into the plugin right now, I’ve included a number of filters you can use to accomplish what you need (see the bottom of the main plugin description page). One such filter you could use is:

    ssrp_post_title( $post_title, $post_id )

    Using this filter, you could put code like the following in your theme’s functions.php file to accomplish what you need:

    function ssrp_add_thumbnails( $post_title, $post_id ) {
        return get_the_post_thumbnail( $post_id ) . $post_title;
    }
    add_filter( 'ssrp_post_title', 'ssrp_add_thumbnails', 10, 1 );

    I’d like to add this functionality in future versions, but part of the reason I’ve added all these filters is to allow devs like yourself to make modifications as need be in the meantime.

    Let me know if you have any other questions, and thanks!

    Thread Starter car57

    (@car57)

    You are awesome! thanks!!!!

    Plugin Author Mickey Kay

    (@mcguive7)

    Hi there – as per your (and other’s requests) I just added the ability include featured images in version 1.3 – thanks for all the feedback! At present, there’s no CSS for the images, which means you’ll be able to style them to match your theme. Let me know if you’d prefer the plugin to include more styling options.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post thumbnail?’ is closed to new replies.