时间:2024-03-13
WordPress函数set_post_type为指定ID的文章设置文章类型。
set_post_type( int $post_id, string $post_type = 'post' )
$post_id
整数
要修改的文章ID
$post_type
字符串
文章类型
$post_id = 3546; if ( set_post_type( $post_id, 'page' ) ) { echo "文章{$post_id}的类型现在为page"; } else { echo '无法将文章转换为page'; }
set_post_type()函数位于:wp-includes/post.php
相关函数:
clean_post_cache()
sanitize_post_field()
Copyright © 2019-2024 javascript.hk