Catégorie wordpress trier par date
Je voudrais trier mon message dans la catégorie spécifique ASC par date. Mon code est :
<?php $cat_id = 3; //the certain category ID
$latest_cat_post = new WP_Query( array('posts_per_page' => 4, 'category__in' => array($cat_id)));
if( $latest_cat_post->have_posts() ) : while( $latest_cat_post->have_posts() ) : $latest_cat_post->the_post(); ?>
<?php the_post_thumbnail('thumbnail', array('class' => 'thumbnailmini')); ?>
<h3><?php the_title(); ?></h3>
<?php the_content('wi?cej ->'); ?>
<div class="clear"></div>
<?php endwhile; endif; ?>
Ce code affiche 4 messages de la catégorie « 3 ». Comment trier ces messages ? J’ai trouvé:
<?php query_posts ('cat=3&orderby=date&order=ASC'); ?>
mais ça ne marche pas.
Salutations.
Solution n°1 trouvée
essaye ça,,
<?php $cat_id = 3; //the certain category ID
$latest_cat_post = new WP_Query( array('posts_per_page' => 4,'orderby' => 'date','order' => 'ASC', 'category__in' => array($cat_id)));
if( $latest_cat_post->have_posts() ) : while( $latest_cat_post->have_posts() ) : $latest_cat_post->the_post(); ?>
<?php the_post_thumbnail('thumbnail', array('class' => 'thumbnailmini')); ?>
<h3><?php the_title(); ?></h3>
<?php the_content('wiecej ->'); ?>
<div class="clear"></div>
<?php endwhile; endif; ?>
0 commentaire