WordPress主题开发常用模板函数/调用标签函数大全

上篇文章介绍了WordPress主题开发常用模板名称和头部函数大全,这篇文章悟空搜收集我们在开发主题中常用模板函数,希望能给大家带来帮助。

常用模板函数

函数名描述
<?php the_content(); ?>文章内容
<?php if(have_posts()): ?>检查是否有文章
<?php while(have_posts()): the_post(); ?>显示文章
<?php endwhile; ?>结束循环
<?php endif; ?>结束判断
<?php get_header(); ?>头部模板内容
<?php get_sidebar(); ?>侧边栏模板内容
<?php get_footer(); ?>底部模板内容
<?php the_time(‘m-d-y’); ?>显示时间,格式为:’08-18-07′
<?php comments_popup_link(); ?>显示到文章留言的链接
<?php the_title(); ?>文章标题
<?php the_permalink(); ?>文章链接
<?php the_category(); ?>文章分类
<?php the_author(); ?>文章作者
<?php the_ID(); ?>文章 ID
<?php edit_post_link(); ?>文章编辑链接
<?php wp_list_bookmarks(); ?>友情链接列表
<?php comments_template(); ?>留言模板内容
<?php wp_list_pages(); ?>所有页面列表
<?php wp_list_categories(); ?>所有分类列表
<?php next_post_link(‘{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}link’); ?>下一篇文章链接
<?php previous_post_list(‘{5cc1b29162d549a8071384de182cc9fc6e6a0fd85e7907f22fd9e18cff4269c3}link’); ?>上一篇文章链接
<?php get_calendar(); ?>显示文章日历
<?php wp_get_archives(); ?>存档链接列表
<?php posts_nav_link(); ?>上一篇和下一篇文章链接
<?php rewind_posts(); ?>重回开头开始第二个循环
<?php get_permalink(); ?>获取文章页面固定链接

扫码关注wp悟空搜

精选优质免费WordPress主题模板,分享最新WordPress实用建站教程!

记住我们的网址:ztJun.com

原文链接:https://xiaohost.com/1327.html,转载请注明出处。
0

评论0

请先