Where to insert get_comments?
I would rarely use ‘echo’ in WordPress template themes because it can cause output to appear before the loops are even executed (aka, at the top of the page). In this instance, I used the get_comments function within a function that hooked onto the content output: add_filter(‘the_content’, ‘includePosts’, 1); Within the function includePosts, I have … Read more