php wp_query

Posted

tags:

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

// Avec wp query on est deja dans la page, actu, post, donc pas besoin de préciser l'ID

<?php 
		$args = array( 'posts_per_page' => '3', 'cat' => '15,14' );
		$the_query = new WP_Query( $args );
    if ( $the_query->have_posts() ) {
			while( $the_query->have_posts() ) { 
                   $the_query->the_post(); ?>        
			<div class="bloc-actu-sidebar">
				<div>
					<h3><?= get_the_title(); ?></h3>
					<p class="date-actu"><?= get_the_date('j F Y'); ?></p>
					<p> <?= get_the_excerpt(); ?></p>
					<a class="btn btn-red" href="<?= get_permalink(); ?>">En savoir plus</a>
				</div>

			</div>      
			<?php  } }
		 wp_reset_query();
?>   

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

php WP_query

php 优化WP_QUERY

php wp_query

php WP_QUERY示例

php WP_Query

PHP 示例WP_Query