我试图在php
页面上single-things.php
部分显示特定链接。
我的top-part.php
中的代码包含在single-things.php
页面中:
<?php if (is_singular( 'things' )) : ?>
//Show content if it's on single-things.php post type
<?php else : ?>
//Display other content
<?php endif; ?>
主要是因为我将top-part.php
包含在其他网页上作为部分内容,所以我仅想要显示特定内容,如果它在单个网址上自定义帖子类型中的项目。
那应该正常工作,对吗?除非我遗漏了什么。