Hey there!
Only placing this in your single.php will display your related posts:
<?php rp4wp_children(); ?>
The second code example is a variant of the first but for a specific post, in your case you can ignore it.
Please let me know if there’s anything else I can help you with.
This works fine.
Please let me know how to resize image only for “related post”?
I want to show 35x35px image in related post.
Thank you very much…
If i want to keep related post image size : 30x30px then please explane me with example listed from below code.
<?php
function rp4wp_example_my_thumbnail_size( $thumb_size ) {
return ‘my-thumbnail-size’;
}
add_filter( ‘rp4wp_thumbnail_size’, ‘rp4wp_example_my_thumbnail_size’ );
Which word to edit from above code for custom size ?
Thank you.
The plugin is using the thumbnail size from my media settings theme thumbnail size. This works great for the rest of my website, but I want to change the thumbnail size of the related posts to 30 by 30 pixel and keep my themes thumbnail size the same, is their any way ?
Thank you.
Please answer…
How to make Related Post Title strong “TITLE” ?
Thanks.
The title’s are in a anchor tag so you could for example make them bold with the following CSS:
.rp4wp-related-post-content a { font-weight: bold; }
Thank you for the reply…
Please also answer 1 last question :
The plugin is using the thumbnail size from my media settings theme thumbnail size. This works great for the rest of my website, but I want to change the thumbnail size of the related posts to 30 by 30 pixel and keep my themes thumbnail size the same, is their any way ?
Thank you.
Hey there,
As I said in a previous reply, all the information on changing the related post image size is here: https://www.relatedpostsforwp.com/documentation/changing-the-thumbnail-size/
That page also explains that you need to add a new thumbnail size in WordPress.
Kind Regards,
Barry Kooij