2020-04-03 / 6310阅
WordPress支持查询含有或者没有密码的文章,参数如下:
has_password(布尔):文章是否有密码 post_password(字符串):指定的文章密码
有无密码 获取有密码的文章: $query = new WP_Query( array( 'has_password' => true ) ); 获取没有密码的文章: $query = new WP_Query( array( 'has_password' => false ) ); 指定密码 获取密码是指定内容的文章: $query = new WP_Query( 'post_password=123' );
post_type(字符串 | 数组):文章的类型,一般默认都是 post(文章)
一个文章类型 获取页面:
$query = new WP_Query( 'post_type=page' );
获取自定义文章类型:
$query = new WP_Query( 'post_type=custom_post_type_name' );
多个文章类型 获取多个文章类型:
$query = new WP_Query( array( 'post_type' => array( 'post', 'page', 'movie', 'book' ) ) );
获取全部文章类型:
$query = new WP_Query( 'post_type=any' );
阅读文章或者观看视频过程中有任何问题,请下方留言或者联系我Q248758228