-
AuthorPosts
-
August 28, 2014 at 1:37 pm #94190
Hey Xers-
Is there any way to add “related posts” thumbnails/links into the sidebar? I saw the recent posts shortcode, but I don’t want recent posts as my site’s homepage will already be displaying the latest/recent posts.
I want to manually select which posts and thumbnails are displayed in the sidebar widget – I don’t want WP (or X) to choose the posts based on tags or categories – I want to add them myself.
I’m using the Ethos child theme.
Thanks for your time.
August 28, 2014 at 2:43 pm #94256Hi Val,
You could need to use a plugin as like any of the following: http://wordpress.org/plugins/recent-posts-widget-extended/ http://wordpress.org/plugins/ultimate-posts-widget/
August 28, 2014 at 3:10 pm #94281Okay – thanks! 🙂
August 28, 2014 at 3:17 pm #94294You’re Welcome Val!
Have a nice day, Cheers!
April 19, 2016 at 9:57 am #890180Those plugins are for recent posts, do you have any recommendations for plugins that show related posts that works well with X? Thanks!
April 19, 2016 at 1:40 pm #890599Hello There,
Thanks for writing in!
You can have a look at YARPP (Yet Another Related Posts Plugin)
https://wordpress.org/plugins/yet-another-related-posts-plugin/
Thanks.
May 28, 2016 at 9:57 am #1014408Hi,
I managed to show related posts using the recent posts shortcode, just by changing some lines in the code. So whenever I enter “related” as tag in the shortcode, it will check the posts tags and show the most recent related posts. It is working fine for me!if( !empty( $tag ) ) {
if ($tag == ‘related’){
$args[‘tag’] = strip_tags(get_the_tag_list( ”, ‘, ‘, ” ));
the_tags( ”, ‘, ‘, ” );
} else {
$args[‘tag’] = $tag;
}
}May 28, 2016 at 11:22 am #1014459 -
AuthorPosts