WordPress

WordPressでトップページに更新一覧を表示したい

投稿日:2009年2月17日 更新日:

WordPress2.7を使っている。

更新一覧を、サイドバーに出すのは、簡単(ウィジェットを使えば)。

しかし、トップページに入れるのは、難しい。テンプレートをいじらないといけない。

is_front_page() を使えばいいのだとわかるまでに、2時間くらい悩んだ。以下は完成したコード。header.phpの一番最後に入れた。

<?php if (is_front_page()) { ?>

<h2>What’s New</h2>
<div class=hands>
<?php query_posts($query_string . ‘showposts=5&cat=0’); ?>
<?php if (have_posts()) : ?>
<dl>
<?php while (have_posts()) : the_post(); ?>
<dt></dt>
<a href=”<?php the_permalink() ?>”><?php the_title(); ?></a>(<?php the_time(‘Y-m-d’) ?>)</dd>
<?php endwhile; ?>
</dl>
</div>
<?php else : ?>
<p>更新情報はありません</p>
<?php endif; ?>
<?php query_posts($query_string . “”); ?>
<?php } ?>

以下、参考にしたサイト:
トップページでのみ表示する、記事ページのみで表示する « hereticanthem co.,ltd.
wordpressトップページ等に更新情報(NEWS)を入れる | デザイナー佐脇の気ままな日記
Conditional Tags – WordPress Codex 日本語版

-WordPress

執筆者:

関連記事

no image

Utime failed?

昨日から突然、このサイトのページ上に以下のメッセージが出るようになった。 Warning: touch() [function.touch]: Utime failed: Permission den …

no image

WordPressで Argument #1 is not an array エラー

WordPressで、新規にカスタム投稿で記事を投稿しようとすると、 真っ白の画面で、 Argument #1 is not an array ・・・というエラーが出る。 調べたところ、これはArti …

no image

WordPressのトップページにニュースタイトル欄を設けたい

追記:トップページに最新記事5件を日付・タイトルをリスト表示。 さらに過去30日以内の記事にはNEWアイコンを付けるコード。 ■index.phpの <?php include (TEMPLAT …

WooCommerceでメールの本文を追加編集する

このやり方、Google先生の手を借りていろんなページをあさってみたけど、詳しい記事がない。 なので、最近WooCommerceを使い始めた私が。 プラグインの、WooCommerce Email T …

no image

WordPressで手軽にスライドショーができるプラグインがないかと探してみたら見つけた

Cross Slide Cross Fade http://wordpress.org/extend/plugins/crossslide-jquery-plugin-for-wordpress/ イ …