以下是我尝试在this主题中使用的一些代码:
<?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”为时已晚?这就是为什么它固执地保持“最先发帖”的原因?
答案 0 :(得分:0)
先尝试订购,然后再订购。
&orderby=date&order=ASC