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

このCacooというのは、超絶にすばらしい

久々にWebサービスで感動!メモメモ。これは仕事で使えるぞ。 Cacoo – Web上で図の作成とリアルタイムコラボレーション Web制作している人でこれを知らないなら、一度は上のページに …

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

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

no image

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

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

no image

Responsiveが超高速で作れるArtisteer最高

Webの高速制作ツールのArtisteerがResponsiveに対応しているのは知っていた。 けども、Wordpressでウィジェットとして追加したブロックの一つ一つについて、モバイルで表示したくな …

no image

WordPressのテーマタイトルとファイル・インクルードの備忘メモ

style.cssの三行目を「Theme Name: Twenty Ten faq 20141212」などとすれば、管理画面のThemeのタイトルが変わる。 [code] @charset &quot …