WordPress テーマ作成(3) – 塵芥空間

WordPress テーマ作成(3)

Posted by – 2009年10月14日

最低限、動くテーマを作成しました。simple001.zip機能もへったくれもありません。ファイルはheader.php, footer.phpはdefaultテーマからパクって、style.cssには何も書いていない状態(テーマとして動くための情報のみでcssとしての動作はなし)、新しく作ったindex.phpの4ファイルです。index.phpでは記事のタイトル、日付、内容のみをループで表示させています。恐らく最低限動作するテーマファイルです。面倒なのでサイドバーはありません。

index.phpの内容

<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id=”post-<?php the_ID(); ?>”>
<?php the_title(); ?>
<br />
<?php the_time(); ?>
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>

ちなみに、表示するとこんな感じになります。

simple001.zipのスナップショット

0 Comments on WordPress テーマ作成(3)

Respond | Trackback

Respond

Comments

Comments

Comments links could be nofollow free.


Performance Optimization WordPress Plugins by W3 EDGE