[php]代码库
<?php get_header(); ?> 调用Header模板
<?php get_sidebar(); ?> 调用Sidebar模板
<?php get_footer(); ?> 调用Footer模板
<?php the_content(); ?> 调用文章内容
<?php if(have_posts()) : ?> 检查是否存在文章列表
<?php while(have_posts()) : the_post(); ?> 如果存在列表则予以显示
<?php endwhile; ?> While 结束
<?php endif; ?> : If 结束
<?php the_time('字符串') ?> 显示时间,时间格式由“字符串”参数决定,比如“Y-m-d”,具体参考PHP手册
<?php comments_popup_link(); ?> 正文中的评论链接。如果使用 comments_popup_script() ,则留言会在新窗口中打开,反之,则在当前窗口打开
<?php the_title(); ?> 内容页(Post/Page)标题
<?php the_permalink() ?> 内容页(Post/Page) Url
<?php the_category(', ') ?> 特定内容页(Post/Page)所属Category
<?php the_author(); ?> 作者
<?php the_ID(); ?> 特定内容页(Post/Page) ID
<?php edit_post_link(); ?> 如果用户已登录并具有权限,显示编辑链接
<?php get_links_list(); ?> 显示Blogroll中的链接
<?php comments_template(); ?> 调用留言/回复模板
<?php wp_list_pages(); ?> 显示Page列表
<?php wp_list_categories(); ?> 显示Categories列表
<?php next_post_link(' %link '); ?> 下一篇文章链接
<?php previous_post_link('%link'); ?> 上一篇文章链接
<?php get_calendar(); ?> 日历
<?php wp_get_archives() ?> 显示内容存档
<?php posts_nav_link(); ?> 导航,显示上一篇/下一篇文章链接
<?php include(TEMPLATEPATH . '/文件名'); ?> 嵌入其他文件,可为定制的模板或其他类型文件