php WP_query

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WP_query相关的知识,希望对你有一定的参考价值。

<?php
$args = array('post_type' => 'avis');
$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) {

	while ( $the_query->have_posts() ) {
		$the_query->the_post();
	}
	/* Restore original Post Data */
	wp_reset_postdata();
} else {
	// no posts found
}
?>

以上是关于php WP_query的主要内容,如果未能解决你的问题,请参考以下文章

php WP_query

php 优化WP_QUERY

php wp_query

php WP_QUERY示例

php WP_Query

PHP 示例WP_Query