WordPress

WordPressでトップに最新投稿サマリと特定ページの本文を表示

投稿日:

home.phpに、最新投稿のサマリ欄と、特定ページ(以下の場合ID=10)のタイトルと本文が表示されるようにした。
home.phpって、ホント便利。
というか、WordPressは、ホント柔軟! なんでもできるね。

[php]
<?php get_header(); ?>
<div class="art-content-layout">
<div class="art-content-layout-row">
<?php include (TEMPLATEPATH . ‘/sidebar1.php’); ?><div class="art-layout-cell art-content">
<!– ニュース カテゴリの表示その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’); ?>
<div style="border: 1px solid lightSlateGray;margin: 0 10px;">
<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>
</div>
<!– ニュース カテゴリの表示その2 ここまで –>
<!– 特定ページの表示 ここから –>
<div class="art-post">
<div class="art-post-body">
<div class="art-post-inner art-article">
<h2 class="art-postheader">
<img src="<?php bloginfo(‘template_url’); ?>/images/postheadericon.png" width="26" height="26" alt="postheadericon" />
<?php
$page_id = 10;
$mes = get_page($page_id);
echo $mes->post_title;
?>
</h2>
<p>
<?php echo $mes->post_content; ?>
</p>
</div>
</div>
</div>
<!– 特定ページの表示 ここまで –>
</div>
<?php include (TEMPLATEPATH . ‘/sidebar2.php’); ?>
</div>
</div>
<div class="cleared"></div>

<?php get_footer(); ?>
[/php]

-WordPress

執筆者:

関連記事

no image

WordPressMe2.3.3で、Deprecatedエラー

朝、出社して管理しているお客様のサイトを見ると、上部に見たこともないエラーがずらずら出ていた。 Deprecated: Assigning the return value of new by ref …

クリップボードの画像をファイル保存せずそのまま投稿画面に貼り付けられるとは・・・素晴らしい OnePress Image Elevator

上記の画面は、FireFoxのScreenShoterプラグインで、画面から直接クリップボードに画像を撮って、WPの投稿画面にペーストしただけのもの。 WordPress › OnePress Ima …

no image

Google Apps Scriptで楽天APIを使ってみる

この通りにやってみた。 1.以下の情報を元に、スクリプトを作成(楽天デベロッパーID以外、ほとんどコピペ) 【Google Apps Script】楽天商品検索APIでアフィリエイトサイト簡単作成ツー …

no image

旧xoops myalbum 珍しいもの 2

かまぼこ工場4 harvest 2006-1-15 17:19 969 0 工場の職人さん、俺たちが子連れで行ったからか、作り上げた作品をわざわざ天地を整えて、ガラスのすぐ近くのみやすい位置に置いてく …

no image

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

WordPress2.7を使っている。 更新一覧を、サイドバーに出すのは、簡単(ウィジェットを使えば)。 しかし、トップページに入れるのは、難しい。テンプレートをいじらないといけない。 is_fron …