单数自定义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.
<?php if ( is_singular( 'testimonial' ) ) { /* Run some code if viewing a singular testimonial. */ } ?>
以上是关于单数自定义Post类型的Wordpress条件语句的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress:使用 wp_insert_post() 填充自定义帖子类型字段