自定义元信息:
<?php _e('发布信息:'); ?>
日期
the_time()
显示格式为”02-19-08″的日期
<?php the_time('y-m-d') ?>
<?php the_time('Y-m-d h:m:s') ?>
显示一篇日志的留言链接
<?php comments_popup_link(); ?>
显示一篇日志或页面的所属分类
<?php the_category(',') ?>
显示一篇日志或页面的作者
<?php the_author(); ?>
显示一篇日志或页面的ID/日志 ID
<?php the_ID(); ?>
显示一篇日志或页面的编辑链接页面
<?php edit_post_link(); ?>
显示Blogroll中的链接
<?php get_links_list(); ?>
下一篇日志的URL地址
<?php next_post_link('%link') ?>
上一篇日志的URL地址 <?php previous_post_link('%link') ?>
文章日志或页面标题
<?php wp_title(); ?> 博客标题:
<?php the_title(); ?>
博客标题链接: <?php the_permalink(); ?>
调用日历
<?php get_calendar(); ?>
显示一份博客的日期存档列表/归档列表
<?php wp_get_archives() ?>
调用文章
例如:显示10条最新文章
<?php get_archives('postbypost', 10); ?>
<?php wp_get_archives('type=postbypost&limit=10&format=custom'); ?> 调用缩略图
<?php the_post_thumbnail(); ?>
例如调用 最小缩略图
<?php the_post_thumbnail('thumbnail'); ?>
调用缩略图地址链接
<?php echo get_the_post_thumbnail_url(); ?>
参数
Thumbnail (缩略图尺寸)
Medium (中等尺寸)
Large (大尺寸)
Full (原始尺寸) 文章/日志内容
<?php the_content(); ?> ——带 p
<?php echo get_the_content(); ?> —— 不带 p 调用header
<?php get_header(); ?>
调用footer
<?php get_footer(); ?>
调用comments.php文件的内容/加载评论模板
<?php comments_template(); ?>