php WP_Query

Posted

tags:

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

<?php

$args = [
	'post_type' => 'post'
];

$the_query = new WP_Query( $args );

?>

<?php if ( $the_query->have_posts() ) : ?>
	<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
	
	<!-- Content Here -->
	
	<?php endwhile; ?>
	
	<?php wp_reset_postdata(); ?>
<?php endif; ?>

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

php WP_query

php 优化WP_QUERY

php wp_query

php WP_QUERY示例

php WP_Query

PHP 示例WP_Query