如果主页不执行任何操作,则在其他情况下显示此内容

时间:2017-03-27 作者:Richard Bland

我有以下代码:

<?php if (is_single() || is_page() || is_archive() || is_404() || is_tag()) { ?>

<div class="single-page-title">
<div class="spt-wrap grid-container container grid-parent">
<div class="spt-title">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div>

<?php } elseif (is_home() || is_front_page()) { ?><?php } ?>
我希望它只显示除主页本身以外的所有其他页面/帖子/档案中的HTML内容。我不希望它显示在主页上。

有人能帮我重写一下吗?

非常感谢你

1 个回复
最合适的回答,由SO网友:birgire 整理而成

听起来你在寻找:

if ( ! is_home() && ! is_front_page() )
{
   // the stuff you don\'t want to show on the front/home page
}
我们在哪里使用它! ( A || B ) = ! A && ! B.

但这也取决于您在主题中使用代码段的位置。