WordPress主题开发内容相关编写,内容分内容列表和内容详情两部分。
首先说下列表
文章标题
<h3 class=”title”><a href=”<?php the_permalink(); ?>” rel=”bookmark”><?php the_title(); ?></a></h3>
文章标签
<?php the_tags(‘标签:’, ‘, ‘, ”); ?>
添加日期
<?php the_time(‘Y年n月j日’) ?>
显示评论数
<?php comments_popup_link(‘0 条评论’, ‘1 条评论’, ‘% 条评论’, ”, ‘评论已关闭’); ?>
添加编辑按钮
<?php edit_post_link(‘编辑’, ‘ • ‘, ”); ?>
添加文章内容
<?php the_excerpt(); ?>
<?php the_content(‘阅读全文…’); ?>
阅读全文
<a href=”<?php the_permalink(); ?>” class=”button right”>阅读全文</a>
文章循环
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
内容
<?php endwhile; ?>
<?php else : ?>
输出找不到文章
<?php endif; ?>
分页
<p class=”clearfix”><?php previous_posts_link(‘<< 查看新文章’, 0); ?> <span class=”float right”><?php next_posts_link(‘查看旧文章 >>’, 0); ?></span></p>
函数详解
<?php the_permalink(); ?> 输出文章的URL链接
<?php the_title(); ?> 输出文章的标题
<?php the_tags(‘标签:’, ‘, ‘, ”); ?> 标签
基本上,一个页面的内容已经包括了,大家根据自己的需求自定义的Diy
接下来说下单页
可以直接很使用如下
<!– Column 1 /Content –>
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
内容
<?php else : ?>
<div class=”errorbox”>
没有文章!
</div>
<?php endif; ?>
<?php get_sidebar(); ?>