最新の5件の投稿のタイトルを、対応するリンクの付いたヘッダー位置に追加したいのですが、実際のPHPコードは何ですか?Am Newbie ....
これはそのページの追加のループのようですね。あなたが使用したいかもしれません:
<ul>
<?php $posts_query = new WP_Query('posts_per_page=5');
while ($posts_query->have_posts()) : $posts_query->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; wp_reset_query(); ?>
</ul>
また、ここでもっと読んでください: http://codex.wordpress.org/The_Loop#Multiple_Loops_in_Action
<?php $recent_posts = get_posts('numberposts=5');
if($recent_posts) { ?>
<ul>
<?php foreach( $recent_posts as $recent ) { ?>
<li>
<a href="<?php echo get_permalink($recent->ID); ?>"><?php echo $recent->post_title; ?></a>
</li>
<?php } ?>
</ul>
<?php } ?>
http://codex.wordpress.org/Template_Tags/get_posts 異なる出力が必要な場合は、htmlタグを変更する必要があります。