My question is loosely related to this topic, so I thought I’d bring it up here. The key words are ‘page-specific comments templates’.
Let me explain.
I can get comments working on my pages. No problem there. The reason I want to have comments on some of my pages, is because I want to get people’s opinion on the content of that certain page. In this case, the pages describe the route I am going to be travelling through a certain country (ref: https://www.14degrees.org/en/?page_id=35).
The question is, how do I get my custom comments template ‘comment_country.php’ to display correctly in the context of
<?php comments_template(); // Get wp-comments.php template ?>
I have tried:
<?php comment_country_template(); // Get wp-comment_country.php template ?>
but this gives me an error.
When I do this,
<?php include(“comment_country.php”) ?>
my custom country comment template displays nicely, but does not show any posts…
May I call upon the great wisdom of someone who has some idea, to suggest a way that I can get my page-specific comments template to work?
Let me know if you need more info.