Forums

Need help with conditional statement for comments (4 posts)

  1. rughooker
    Member
    Posted 1 year ago #

    I am customizing a template page and I want to show "Tell us what you think" on one category and the standard "Leave a comment" on all others. How do I do that?

  2. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    <?php if( is_category('Name') ) :?>
    [ do one thing]
    <?php else :?>
    [ do something else ]
    <?php endif;?>
  3. rughooker
    Member
    Posted 1 year ago #

    For my understanding, how would this statement changed if it is used in a function?

  4. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    You would also have to use something like global $post; within the function to call the post object into the function so that its category can be checked.

Topic Closed

This topic has been closed to new replies.

About this Topic