Hi Team,
I installed the AddThis Related Post plugin but the related posts do not show up. Specifically, I want the related posts to appear on my single blog post page at the bottom of the post. I did find a thread on this and tried the solution below but it is still not showing up. This was posted into my functions.php child theme.
> add_filter( 'the_content', 'custom_add_this');
function custom_add_this($content) { if ( is_single() ) { return $content . '<div class="addthis_relatedposts_inline"></div>'; } else { return $content; } }
Any suggestions?
Thank you