Tim

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Conditional based on Event Category #1067760
    Tim
    Participant

    Nevermind, I figured it out! Woo hoo!

    This is what I used in case anyone wants the goods…

    
     <?php 
    $cat_name = single_cat_title( '', false );
    if ($cat_name == "workshops") {
    	echo "Workshop Category Code!";
    }
    elseif ($cat_name == "seminars") {
    	echo "Seminar Category Code!";
    }
    ?>
    
Viewing 1 post (of 1 total)