单数自定义Post类型的Wordpress条件语句

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单数自定义Post类型的Wordpress条件语句相关的知识,希望对你有一定的参考价值。

Suppose you wanted to check if a user was viewing a singular post with the post type of testimonial. You can use the next code sample to perform this check.
  1. <?php
  2.  
  3. if ( is_singular( 'testimonial' ) ) {
  4.  
  5. /* Run some code if viewing a singular testimonial. */
  6. }
  7.  
  8. ?>

以上是关于单数自定义Post类型的Wordpress条件语句的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:使用 wp_insert_post() 填充自定义帖子类型字段

Wordpress自定义Post类型注册

检查当前post类型是否为自定义post类型€“WordPress

wordpress自定义post类型的自定义列

Wordpress自定义Post类型自定义分类法和查询

Wordpress注册自定义Post类型和自定义分类法