Is there any way to allow comments on only one blog category, but not allow them on others?
I'd also like to be able to display the "Leave a comment" link only for that category.
Thank you for your time and help.
Is there any way to allow comments on only one blog category, but not allow them on others?
I'd also like to be able to display the "Leave a comment" link only for that category.
Thank you for your time and help.
Use a conditional statement around your comments section, such as:
if (is_category('comment-cat')) {
// comments code
} else {
// no comment stuff?
}
See this page for more details on the 'is_category()' function:
http://codex.wordpress.org/Function_Reference/is_category
PS: There may be additional edits required for aesthetic purposes so the comments links and other related items are not showing, as well.
This topic has been closed to new replies.