苏醒 苏醒
  • 首页
  • WP主题
  • WP插件
  • WP教程
  • 是日一记
  • 博客
    • 留言
    • 唠叨
    • 盆友圈
    • 栏目推荐

suxing

管理员
每天清晨有多少双眼睛睁开,有多少人的意识苏醒过来,便有多少个世界。
IP归属地: 广东
文章
214
评论
236
suxing
2015-02-28 2:36:25 广东

WordPress 4.1 中新增的主题函数

文章字数:1367
阅读时间: 4 分钟
智能摘要 DeepSeek
WordPress 4.1 新增了6个主题特性,包括`title-tag`、`the_archive_title()`、`the_archive_description()`、`the_post.Navigation()`、`the_posts.Navigation()`和`the_posts.pagination()`。这些特性帮助开发者简化主题功能,提升开发效率,例如`title-tag`可避免重复添加标题,`the_archive_title()`和`the_archive_description()`简化归档描述处理,而`the_post`和`the_posts`的导航特性则帮助简化模板代码。

WordPress 4.1 正式发布了,新增了不少非常实用的主题函数。

以下是各函数介绍:

[quote] title-tag[/quote]

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' );

[quote] the_archive_title()[/quote]

the_archive_title() / get_the_archive_title()

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

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

the_archive_description() / get_the_archive_description()

[quote] 返回归档的相关描述[/quote]

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

the_archive_description( '<div class="taxonomy-description">', '</div>' );

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

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.

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

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;

[quote] 返回文章列表的分页式导航。[/quote]

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;
  • WordPress 教程
  • WordPress主题函数
  • WP4.1主题函数
等 人表示很赞
7,559
1

评论 (1)

  • 苏醒 作者

    测试

    11 年前 广东省 回复 0
suxing
suxing
2015-07-25 10:36:48 广东

推荐 WordPress主题使用Timthumb获取缩略图及七牛CDN缓存问题

智能摘要 DeepSeek Timthumb 是一种高效生成 WordPress 缩略图的工具,支持在不同位置展示图片,节省空间。但其默认仅处理本地图片和预留 ...
  • WordPress 教程
  • Timthumb获取缩略图
  • 七牛CDN缓存
10,177 3
suxing
suxing
2019-01-01 11:24:43 广东

推荐 nicetheme 积木 插件

智能摘要 DeepSeek WordPress广泛应用,但主题与插件兼容性问题突出,[NICETHEME]提供模块化、定制化优化组件,支持一键安装体验,帮助提 ...
  • WordPress 插件
  • WordPress 教程
4,285 1
suxing
suxing
2017-06-13 11:00:42 广东

推荐 完美解决WordPress编辑器可视化/文本无法切换、添加媒体按钮失效的问题

智能摘要 DeepSeek 在将WordPress从Windows服务器迁移至Linux服务器时,发现媒体添加和编辑切换按钮无反应。问题源于JavaScript文件被合并,导致依赖脚本功能失效。部分主机可能因配置不标准或禁用相关功能导致 ...
  • WordPress 教程
6,021 0
suxing
suxing
2014-11-10 0:42:55 广东

推荐 解决WordPress中数字英文字符串不能自动换行的问题

智能摘要 DeepSeek 在WordPress编辑器中,长字符串无法自动换行,溢出到侧边栏或隐藏。解决方案是添加CSS样式代码<code>word-wrap:break-word;overflow:hidden;</ ...
  • WordPress 教程
  • WordPress英文换行
8,542 1
suxing
suxing
2015-05-13 16:20:07 广东

推荐 WDCP面板升级PHP5.3,安装Zend Guard Loader组件教程

智能摘要 DeepSeek 默认安装的WDCP管理面板PHP版本为5.2.17,但购买苏醒付费主题需升级至PHP5.3或5.4。升级步骤包括:1)运行PHP升级脚本至PHP5.3.17;2)升级eAccelerator插件;3)安装Ze ...
  • WordPress 教程
  • PHP版本升级
  • WDCP教程
  • WDCP面板升级PHP
  • 安装zend组件
10,514 6

我用的 WordPress 主题

2021 年单栏 WordPress 主题

Copyright © 2012-2025 苏醒. All rights reserved. Designed by nicetheme.
  • 首页
  • 主题
  • 教程
  • 博客
  • 唠叨
  • 留言