Forums

Comments for only one category? (2 posts)

  1. BakingandBooks
    Member
    Posted 2 years ago #

    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.

  2. Edward Caissie
    Member
    Posted 2 years ago #

    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.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.