0

这是我试图从这个主题使用的一些代码:

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php endwhile; else: endif; ?>

<?php query_posts('category_name='.get_the_title().
'&order=ASC&orderby=date&posts_per_page=10'.'&post_status=publish,future');?>

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p><?php the_content(); ?>
<?php endwhile; else: endif; ?>

到帖子加载时,使用“orderby”是否为时已晚?这就是为什么它顽固地保持“最新帖子优先”的原因吗?

4

1 回答 1

0

先尝试orderby,然后再订购。

&orderby=date&order=ASC
于 2012-08-30T20:54:06.523 回答