Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
author.php テンプレートで、著者の最新の投稿を 10 個リストしたいと考えています。私はこのコードを使用しました:
<?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <?php endwhile;?>
しかし、現在の著者の最後の投稿しか見ることができません。何か助けはありますか?
ここにコードがあります
<?php global $query_string; query_posts( $query_string . '&posts_per_page=10' ); while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> <?php endwhile;?>