根本模板文件
style.css : CSS(款式表)文件
index.php : 主页模板
archive.php : Archive/Category模板
404.php : Not Found 谬误页模板
comments.php : 留言/回复模板
footer.php : Footer模板
header.php : Header模板
sidebar.php : 侧栏模板
page.php : 内容页(Page)模板
single.php : 内容页(Post)模板
searchform.php : 搜寻表单模板
search.php : 搜寻后果模板
根本条件判别Tag
is_home() : 能否为主页
is_single() : 能否为内容页
(Post) is_page() : 能否为内容页
(Page) is_category() : 能否为Category/Archive页
is_tag() : 能否为Tag存档页
is_date() : 能否为指定日期存档页
is_year() : 能否为指定年份存档页
is_month() : 能否为指定月份存档页
is_day() : 能否为指定日存档页
is_time() : 能否为指定工夫存档页
is_archive() : 能否为存档页
is_search() : 能否为搜寻后果页
is_404() : 能否为 “HTTP 404: Not Found” 谬误页
is_paged() : 主页/Category/Archive页能否以多页显示
Header局部PHP函数
<!–p bloginfo(’name’);–>: 博客称号(Title)
<!–p bloginfo(’stylesheet_url’);–>: CSS文件门路
<!–p bloginfo(’pingback_url’);–>: PingBack Url
<!–p bloginfo(’template_url’);–>: 模板文件门路
<!–p bloginfo(’version’);–>: WordPress版本
<!–p bloginfo(’atom_url’);–>: Atom Url
<!–p bloginfo(’rss2_url’);–>: RSS 2.o Url
<!–p bloginfo(’url’);–>: 博客 Url
<!–p bloginfo(’html_type’);–>: 博客网页Html类型
<!–p bloginfo(’charset’);–>: 博客网页编码
<!–p bloginfo(’description’);–>: 博客形容
<!–p wp_title();–>: 特定内容页(Post/Page)的题目
模板PHP函数及命令
<!–p get_header();–>: 调用Header模板
<!–p get_sidebar();–>: 调用Sidebar模板
<!–p get_footer();–>: 调用Footer模板
<!–p the_content();–>: 显示内容(Post/Page)
<!–p if(have_posts()) :–>: 反省能否存在Post/Page
<!–p while(have_posts()) : the_post();–>: 假如存在Post/Page则予以显示
<!–p endwhile;–>: While 完结
<!–p endif;–>: If 完结
<!–p the_time(’字符串’)–>: 显示工夫,工夫格局由“字符串”参数决议,详细参考PHP手册
<!–p comments_popup_link();–>: 注释中的留言链接。假如应用 comments_popup_script() ,则留言会在新窗口中关上,反之,则在以后窗口关上
<!–p the_title();–>: 内容页(Post/Page)题目
<!–p the_permalink()–>: 内容页(Post/Page) Url
<!–p the_category(’,’)–>: 特定内容页(Post/Page)所属Category
<!–p the_author();–>: 作者
<!–p the_ID();–>: 特定内容页(Post/Page) ID
<!–p edit_post_link();–>: 假如用户已登录并具备权限,显示编辑链接
<!–p get_links_list();–>: 显示Blogroll中的链接
<!–p comments_template();–>: 调用留言/回复模板
<!–p wp_list_pages();–>: 显示Page列表
<!–p wp_list_categories();–>: 显示Categories列表
<!–p next_post_link(’%link’);–>: 下一篇文章链接
<!–p previous_post_link(’%link’);–>: 上一篇文章链接
<!–p get_calendar();–>: 日历
<!–p wp_get_archives()–>: 显示内容存档
<!–p posts_nav_link();–>: 导航,显示上一篇/下一篇文章链接
<!–p include(TEMPLATEPATH . ‘/文件名’);–>: 嵌入其余文件,可为定制的模板或其余类型文件
模板相干其余函数
<!–p _e(’Message’);–>: 输入相应信息
<!–p wp_register();–>: 显示注册链接
<!–p wp_loginout();–>: 显示登录/登记链接
<!–ext pag–>: 将以后内容分页
<!–or–>: 将以后内容截断,以不在主页/目录页显示全副内容
<!–p timer_stop(1);–>: 网页加载工夫(秒)
<!–p echo get_num_queries();–>: 网页加载查问量
当然,wordpress的函数远远不止这些,假如你有更高的要求,请拜访wordpress民间代码页面
以上就是安达网络工作室关于《wordpress模板常用函数集锦》的一些看法。更多内容请查看本栏目更多内容!
找到wp-includes/formatting.php文件中复制代码代码如下:// This is not a tag, nor is the texturization ...
wp_title 函数在 WordPress 中是用来显示文章、页面、分类等等等等题目的一个函数,但在首页索引,该函数将...
查问字符串指的是链接中后边的问号后的查问语句,格局为 key=value,多个查问语句用 & 符号离开。add_query...
本文实例讲述了WordPress增加前台注册性能的办法。分享给大家供大家参考。详细剖析如下: WordPress属于集体...
1、确认你的数据库名通常有多个数据库或许一个数据库里装置了多套顺序,所以预备工作就是确认你的数据库名和...
家喻户晓,wordpress是基于php开发,在apache效劳下运转是最优秀的。然而,国际依然有很多主机上不能提供ap...