在单一自定义帖子类型上显示特定内容

时间:2017-05-18 16:29:52

标签: php wordpress wordpress-theming custom-post-type

我试图在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包含在其他网页上作为部分内容,所以我想要显示特定内容,如果它在单个网址上自定义帖子类型中的项目。

应该正常工作,对吗?除非我遗漏了什么。

0 个答案:

没有答案
相关问题