仅定位自定义 wordpress 模板中的帖子
Posted
技术标签:
【中文标题】仅定位自定义 wordpress 模板中的帖子【英文标题】:Target only posts in custom wordpress template 【发布时间】:2021-12-30 14:22:20 【问题描述】:以下代码使我的网站崩溃。我试图只定位帖子。不知道为什么。
我的 php 打开和关闭也很好,但我不能让它出现在这里
<?php if(is_single('post')); ?>
<header>
test
</header>
<?php endif; ?>
【问题讨论】:
【参考方案1】:is_single()
中不需要说post
试试这个 - 它应该检查它是否是单身并且它是一个“帖子”
< ?php if( is_single() && 'post' === get_post_type() ); ? >
< header >
test
</ header >
< ?php endif; ? >
【讨论】:
没用,但有了更多的 fenageling 我能够让它工作:以上是关于仅定位自定义 wordpress 模板中的帖子的主要内容,如果未能解决你的问题,请参考以下文章