トップページに記事を1件表示する

テーマ関連 コメントは受け付けていません。
<?php
$posts = get_posts('&showposts=1');
if($posts): foreach($posts as $post): setup_postdata($post);
?>
<h2><?php the_title(); ?></h2>
<?php the_content(__('(more...)')); ?>
<?php endforeach; ?>
<?php else : endif; ?>

get_postsのパラメータに、「’category_name=whatsnew’」を入れると、カテゴリースラッグ(=whatsnew)の記事を絞ることができる。
「&showposts=10」とすると、10件表示する。

◎ 全表示する場合

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(__('(more...)')); ?>
<?php endwhile; endif; ?>
WP Theme & Icons by N.Design Studio
Entries RSS Comments RSS ログイン