当前浏览:首页 / WordPress函数 / post_type_exists()

post_type_exists( string $post_type )

文章类型是否有注册

exists 判断存在

post_type 文章类型more...


描述

更多类似的主题函数信息,请查看主题开发手册中的条件标签文章。

另见


参数

$post_type

(string) (必填) 文章类型名称


返回

(bool) 是否注册了文章类型。



源码

查看源码 官方文档


更新日志

版本描述
3.0.0开始引入

使用示例

  • 示例1

    基本示例

    $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