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

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

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

no image

Utime failed?

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

no image

WordPress管理画面のパスワード忘れたとき

ローカルインストールのWordPressの管理画面のパスワードを忘れたときに、以下のページが参考になったので、備忘録。 WordPress のパスワードをマニュアルでリセットする方法 | コリス

no image

ディレクトリを作成できませんでした。 /public_html

この現象、WP_MEMORY_LIMITがおかしいかもという書き込みを見つけて、 wp-settings.phpの適当な箇所に以下を書き込んだら、直った。 define(‘WP_MEMOR …

no image

Artisteerでテンプレートを作ってColorMeで使う、覚え書き

1.Artisteerで2カラムのデザインテンプレート作成。安全を考え外観がColorMEに使えそうなものにする。で、HTMLエクスポート。 2.ColorMeにアクセスし、管理画面のデザイン画面で、 …