描述
更多类似的主题函数信息,请查看主题开发手册中的条件标签文章。
另见
参数
- $post_type
-
(string) (必填) 文章类型名称
返回
(bool) 是否注册了文章类型。
源码
更新日志
版本 | 描述 |
---|---|
3.0.0 | 开始引入 |
使用示例
基本示例
$exists = post_type_exists( 'post' ); // returns true $exists = post_type_exists( 'page' ); // returns true $exists = post_type_exists( 'book' ); // returns true if book is a registered post type $exists = post_type_exists( 'xyz' ); // returns false if xyz is not a registered post type