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

執筆者:

関連記事

GTmetrixでWPの高速化のアドバイスをもらった

このWebのWordPressの遅さが気になっていたんだけど、以前に使ったプラグインよりも、こちらのチェックツールでチェックし、改善するほうが良かった。 ツールの使い勝手が良い。 GTmetrix | …

no image

Ads by datafeedr.com というWordPressのプラグインが動かない原因は自分のブラウザであった

何度設定しても、広告が表示されない、出てこないと思っていたら。 自分のFireFoxに入れているAdBlockPlus拡張が、広告をブロックしていただけであった。 気がつくのに1時間かかっちゃったよ!

no image

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

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

no image

Welcartの商品をGoogle Merchantにfeed登録したくて悪戦苦闘

Google Merchantにfeed登録したくて、 以下のブログと、 Welcartの商品をGoogleショッピング(Google merchant center グーグル マーチャントセンター) …

no image

Themler 使い方覚書(随時更新)

動作は重いが、なかなか気に入っている、Themler. Create themes and templates for Magento, PrestaShop, WordPress, Joomla, …