今日は、単一記事ページの single.php を作成します。以前にindex.phpを作成した経験があるので、single.phpの作成はそれほど難しくありません。ここでは、一部のコンテンツを直接スキップして、結果を直接提供します。修正がわからない場合は、WordPressテーマ制作の全工程(8):index.phpの作成
を参照してください。 1. 記事のタイトル:
<h3 class="title"><a href="single.html">Loreum ipsium massa cras phasellus</a></h3>
を追加し、次のように変更します:
<h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
2. 記事タグ
<a href="#">News</a>, <a href="#">Products</a>
<?php the_tags('标签:', ', ', ''); ?>
3。追加日
検出日: 2009 年 9 月 31 日 変更:<?php the_time('Y年n月j日') ?>
4。コメント数の表示
<a href="#">7 Comments</a>
<?php comments_popup_link('0 条评论', '1 条评论', '% 条评论', '', '评论已关闭'); ?>
5 に変更します。編集ボタン
を追加します。上記のコメント コードを接続し、次のように変更します:<?php comments_popup_link('0 条评论', '1 条评论', '% 条评论', '', '评论已关闭'); ?>
6. 記事コンテンツを追加します
と に置き換えて、<?php the_content(); ?>
<img class="thumb" src="<?php bloginfo('template_url'); ?>/images/610x150.gif" alt=""/>
7. ボタンを追加します。ブログのホームページに戻ってコメントを投稿します
実際には、ブログのホームページとコメントのアンカー リンクを追加することです。header.php を作成するときに、次の方法でブログのアドレスを取得できることはすでにわかっています。 get_option('ホーム');。<p class="clearfix"> <a href="blog.html" class="button float" ><< Back to Blog</a> <a href="#commentform" class="button float right" >Discuss this post</a> </p>
<p class="clearfix"> <a href="<?php echo get_option('home'); ?>" class="button float" ><< 返回首页</a> <a href="#commentform" class="button float right" >发表评论</a> </p>
<!-- Column 1 /Content --> <?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
</div> <?php get_sidebar(); ?>
</div> <?php else : ?> <div class="errorbox"> 没有文章! </div> <?php endif; ?> <?php get_sidebar(); ?>
Our blog, keeping you up-to-date on our latest news.
<h2 class="grid_12 caption clearfix">Our <span>blog</span>, keeping you up-to-date on our latest news.</h2> <div class="hr grid_12 clearfix"> </div>
WordPress チュートリアル "
以上がWordPressテーマ制作の全工程(9):single.phpの作成の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。