如果用户属于特定类别或属于该类别的 single.php,我正在尝试制作一个仅显示内容的条件。我试过使用这些代码,但都不起作用:
<?php if (in_category('catering')) : ?>
<div class='eventinfo'>
<h2>Event Details</h2>
</div>
<?php endif; ?>
和这个:
<?php if(is_category('catering')){
<h2>text</h2>
} endif ?>
它似乎什么也没做,任何想法怎么可能是有条件的?
此外,我需要将它放在 category.php 和 single.php 中,以便在属于该类别的单个帖子上也显示内容。