wordpress固定ページに記事表示

wordpress 固定ページに記事表示

XMLとかにもつかえる


とかにすれば、軒数とカテゴリなども選べる

[sourcecode language=”php”]

<?php /*
Template Name: TopNews
*/ ?>

<?php query_posts("posts_per_page=1"); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

<p class="news_day">
<time><span><?php the_time(‘Y_m_d’) ?></span></time>
</p>
<p class="news_title"><?php the_title(); ?></p>
<p class="news_pic"><img src="<?php echo post_custom(‘imagefield’)?>" width="280" height="180" alt=""></p>
<?php endwhile; endif; ?>

[/sourcecode]