博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WordPress4.1新的函数介绍
阅读量:4839 次
发布时间:2019-06-11

本文共 1465 字,大约阅读时间需要 4 分钟。

wordpress 4.1也更新了一阵子了,作为一般用户最关系的就是新的,作为开发者,新增的函数也给我们带来了更多的便捷和惊喜,今天就转载一篇介绍wordpress4.1中新增的主题函数,做个备忘。

add_theme_support( 'title-tag' )

在 WordPress 4.1 开始新增了一个名为 title-tag 的主题特性。 通过声明这个特性,主题就能知道自身并没有定义标题,WordPress 就可以安全的添加标题而无须担心会导致重复添加。

function theme_slug_setup() {
add_theme_support( 'title-tag' );
}
add_action( 'after_setup_theme', 'theme_slug_setup' );

the_archive_title() / get_the_archive_title()

WordPress 的归档种类有 N 多种,日期、分类、标签、文章形式等…… 而这个不起眼的函数却可以帮你节省不少归档模板上的逻辑处理。

 
the_archive_title'<h1 class="page-title">''</h1>' );

 

the_archive_description() / get_the_archive_description()

和上一个函数类似,这个函数会返回归档的相关描述。

 
he_archive_description'<div class="taxonomy-description">''</div>' );

 

the_post_navigation() / get_the_post_navigation()

返回当前文章的前/后导航。

 
while have_posts(the_post();
get_template_part'content'get_post_format();
the_post_navigation();
endwhile// end of the loop.

 

the_posts_navigation() / get_the_posts_navigation()

 

返回文章列表的前/后导航。

 
if have_posts(:
while have_posts(the_post();
get_template_part'content'get_post_format();
endwhile;
the_posts_navigation();
else :
get_template_part'content''none' );
endif;

 

the_posts_pagination() / get_the_posts_pagination()

返回文章列表的分页式导航。

 

if have_posts(:
while have_posts(the_post();
get_template_part'content'get_post_format();
endwhile;
the_posts_pagination();
else :
get_template_part'content''none' );
endif;

转载于:https://www.cnblogs.com/zywf/p/5848291.html

你可能感兴趣的文章
shell编程
查看>>
ImageSwitch+Gallery
查看>>
【软件需求工程与建模 - 小组项目】第0周:团队成员介绍
查看>>
unresolved external symbol "public: virtual __thiscall...错误
查看>>
php连接oracle oracle开启扩展
查看>>
入门自定义标签,(在SSH里面有自定义标签的练习)
查看>>
最近遇到的一些问题汇总
查看>>
mysql插入数据报错一二
查看>>
spring mvc 常用前后台数据交互的注解
查看>>
Linux学习12-CentOS设置多个tomcat开机自启动
查看>>
ASP.NET MVC Controller 编程所涉及到的常用属性成员
查看>>
条款37:绝不重新定义继承而来的缺省参数值(Never redefine a function's inherited default parameter value)...
查看>>
HDU 4288 Coder 【线段树+离线处理+离散化】
查看>>
[K/3Cloud] 如何从被调用的动态表单界面返回数据
查看>>
c# winform读取xml创建菜单
查看>>
设计模式-工厂方法 简单工厂 抽象工厂 模板方法
查看>>
HDU - 6162(Ch’s gift)
查看>>
showModalDialog()方法
查看>>
终端命令对字符串进行sha1、md5、base64、urlencode/urldecode
查看>>
Rxjava+Retrofit2+Okhttp3多文件上传(服务器端代码+客户端代码)
查看>>