如何仅在帖子页面wordpress中显示元素

时间:2013-07-10 21:33:37

标签: php wordpress

header.php中有一个div元素,我只想在帖子页面中显示。 div不应在主页或404页面或类别或页面或标签页面上显示。 它应该只在帖子页面可见。

我在想的方法是使用css。 div元素将有一个类。让班级为hide-container,此班级设为display:none;。 。诀窍是在帖子页面显示另一个div container

像下面的代码一样显示单曲中的课程。

<div class="hide-container <?php if(is_singular() ) { ?>container<?php } ?>">

上面的代码可以使用,但它显示除主页之外的所有页面上的div元素。我只希望div显示在帖子页面中。

提前感谢。

1 个答案:

答案 0 :(得分:0)

使用is_home()条件标记

<div class="social-tools <?php if(is_home() ) { ?>container<?php } ?>">

即使它写得像那样 - is_home()显示帖子页面

查看此question