WordPress获取所有文章类型函数:get_post_types WordPress函数get_post_types用于获取所有文章类型信息。get_post_types( array|string $args = array(), string $output =… 2022-02-21 WordPress函数 45 0人评论
WordPress根据文章ID设置文章类型函数:set_post_type WordPress函数set_post_type为指定ID的文章设置文章类型。set_post_type( int $post_id, string $post_type = \'post\' )函数… 2022-02-21 WordPress函数 27 0人评论
WordPress检查文章类型是否存在:post_type_exists WordPress函数post_type_exists检查文章类型是否存在,如果已存在则返回true。通常在使用函数register_post_type()注册文章类型前应该先使用post_type_… 2022-02-21 WordPress函数 30 0人评论
WordPress自定义文章类型删除编辑区功能函数:remove_post_type_support WordPress函数remove_post_type_support用于删除自定义文章类型编辑区功能。remove_post_type_support( string $post_type, str… 2022-02-21 WordPress函数 46 0人评论
WordPress检查自定义文章类型编辑区功能是否支持:post_type_supports WordPress函数post_type_supports用于检查自定义文章类型编辑区功能是否支持。post_type_supports( string $post_type, string $fea… 2022-02-21 WordPress函数 31 0人评论
WordPress自定义文章类型添加编辑区功能函数:add_post_type_support WordPress函数add_post_type_support用于为自定义文章类型编辑区添加功能。add_post_type_support( string $post_type, string|a… 2022-02-21 WordPress函数 24 0人评论
WordPress判断是否指定文章类型归档页函数:is_post_type_archive WordPress函数is_post_type_archive用于判断是否指定的文章类型归档页。is_post_type_archive( string|string[] $post_types = … 2022-02-21 WordPress函数 32 0人评论
WordPress自定义文章类型归档页标题函数:post_type_archive_title WordPress函数post_type_archive_title用于在自定义文章类型归档页输出标题,通常在archive-{$post_type}.php模板中使用。post_type_archi… 2022-02-21 WordPress函数 23 0人评论
WordPress判断文章是否设置了特色图像函数:has_post_thumbnail WordPress函数has_post_thumbnail用于判断当前文章是否设置了特色图像,即是否包含缩略图。has_post_thumbnail( int|WP_Post $post = null… 2022-02-21 WordPress函数 21 0人评论
WordPress文章发表日期标签:the_date WordPress模板标签the_date输出当前文章的发表日期,需要用在The Loop主循环中。the_date( string $d = \'\', string $before = \'\',… 2022-02-21 WordPress函数 27 0人评论