2014-03-27 114 views
0

我想按specyfic類ASC按日期排序我的帖子。 我的代碼是:WordPress的類別按日期排序

<?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; ?> 

此代碼顯示從類別 「3」 4個職位。如何對這個帖子進行排序? 我發現:

<?php query_posts ('cat=3&orderby=date&order=ASC'); ?> 

但它不起作用。

問候。

回答

0

試試這個,,

<?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

它的工作原理!非常感謝你!! – user3045185

+0

太棒了。美好的一天 –