我创建了一个帖子类别和子类别,然后立即添加到菜单中,我想为每个特定类别页面回显一些特定数据,但是我无法在主题目录中找到源文件。
我也使用firebug inspect元素,但是它只显示html来帮助我找到确切的php源文件,谢谢。
这是我的代码。
<?php
$current_user = wp_get_current_user();
if ( is_category( 'nokia' ) ) {
echo "<h1> i am iqbal</h1>"
?>
<h1> i am iqbal </h1>
<!-- HTML markup here -->
<?php } else { ?>
<h1>
i am not iqbal
</h1>
<!-- other HTML markup here -->
<?php } ?>