WordPress

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

投稿日:2010年12月22日 更新日:

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

[php]
■index.phpの
<?php include (TEMPLATEPATH . ‘/sidebar1.php’); ?><div class="art-layout-cell art-content">
の、下あたりに以下を追加。

<!– ニュース カテゴリの表示その1 ここから –>
<div class=’art-post’>
<div class="art-post-body">
<div class="art-postmetadataheader">
<h2 class="art-postheader">
<img width="26" height="26" alt="postheadericon" src="<?php bloginfo(‘template_url’); ?>/images/postheadericon.png">
<?php _e(‘トピックス’); ?></a>
</h2>
</div>
</div>
<ul>
<?php query_posts(‘showposts=5&cat=1’); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<li><span class="date">
<?php the_time(‘Y年n月j日’); ?>

<?php
$days=30;
$today=date(‘U’); $entry=get_the_time(‘U’);
$diff1=date(‘U’,($today – $entry))/86400;
if ($days > $diff1) {
echo ‘<img src="/wordpress/wp-content/themes/kosen_inove/images/new.gif" alt="New" />’;
}
?>
</span>

<a href="<?php the_permalink(); ?>"><?php the_title();?></a>
</li>
<?php endwhile; endif; ?>
</ul>
</div>
<!– ニュース カテゴリの表示その1 ここまで –>
<!– ニュース カテゴリの表示その2 ここから –>
<div class=’art-post’>
<div class="art-post-body">
<div class="art-postmetadataheader">
<h2 class="art-postheader">
<img width="26" height="26" alt="postheadericon" src="<?php bloginfo(‘template_url’); ?>/images/postheadericon.png">
<?php _e(‘トピックス’); ?></a>
</h2>
</div>
</div>
<?php $posts = get_posts(‘numberposts=3&order=desc’); ?>
<ul>
<?php foreach($posts as $post): ?>
<li><?php the_time(‘Y-m-d’) ?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<!– ニュース カテゴリの表示その2 ここまで –>
[/php]

■page.phpだと、うまくいかない・・・?

-WordPress

執筆者:

関連記事

no image

WordPressでCSVからユーザーを一括登録/インポート

同じ事がしたいなら、Google先生に聞くと、CW Batch Registerというプラグインが良く出てくる。 しかし、私のWPの環境だと自動インストールの候補に挙がってこなかった。 なぜだかわから …

no image

WordPress Visual Icon Fonts

Web制作で、FAQページを簡単に作る方法はないかなと考えて、解の一つがこの、WordPress Visual Icon Fontsプラグイン。 icon-question-circle こんなときど …

no image

WordPressとArtisteerとAdvanced Excerptの抜粋表示について

WordPressで抜粋表示するプラグインを探していて、Advanced Excerptというのがでてきた。 しかし、インストールしてみたが、いっこうに抜粋されない。 なんでかなーと調べてみると、今、 …

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

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

no image

WordPressMUインストール失敗(翌日成功)

個人で借りてるサーバにインストールしようとしたが、DB情報を入れた次の画面で失敗。 メッセージは「Error establishing a database connection」。 どうやら、自動で …