如何在Wordpress中查找帖子类别源文件

时间:2018-10-19 05:16:00

标签: php custom-wordpress-pages

我创建了一个帖子类别和子类别,然后立即添加到菜单中,我想为每个特定类别页面回显一些特定数据,但是我无法在主题目录中找到源文件。

我也使用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 } ?>

0 个答案:

没有答案