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 を試してください。

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