苏醒 苏醒
  • 首页
  • 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,147
1

评论 (1)

  • 苏醒 作者

    测试

    10 年前 广东省 回复 0
suxing
suxing
2024-07-03 18:18:38 广东
推荐 WordPress 教程:如何让嵌入的 YouTube 视频铺满文章内容的宽度
在这篇教程中,我们学习了如何在WordPress文章中嵌入YouTube视频并使其全屏显示。首先,我们使用div和iframe标签嵌入视频,例如:``。接着,通过WordPress的外观定制器添加自定义CSS,确保视频响应式布局。具体代码包 ...
  • WordPress 教程
1,917 0
suxing
suxing
2019-04-02 23:31:50 广东
推荐 WordPress插件:Easy WP SMTP 和 Social Warfare 漏洞被利用,近 20 万站点还没打补丁
智能摘要 DeepSeek 近日,两个广受欢迎的WordPress插件(Easy WP SMTP和Social Warfare)被曝存在严重漏洞,允许攻击者创 ...
  • WordPress 教程
  • 博客
2,375 0
suxing
suxing
2017-06-29 14:23:29 广东
推荐 WordPress上传的文件尺寸超过php.ini中定义的upload_max_filesize值解决方法
智能摘要 DeepSeek WordPress上传主题包时,若提示文件尺寸超过upload_max_filesize限制,需修改php.ini中的upload_max_filesize和post_max_size参数(默认2MB),建议 ...
  • WordPress 教程
12,886 0
suxing
suxing
2019-12-08 15:22:59 广东
推荐 非插件启用 WordPress 维护模式
智能摘要 DeepSeek 维护页面在线上调整网站时能避免访问者因维护而遇到问题,同时不影响后台设置调整。WordPress内置维护模式,通过简单的代码(如在functions.php中添加函数)即可开启,关闭时只需注释最后一行即可。 ...
  • WordPress 教程
2,327 0
suxing
suxing
2015-05-04 23:54:36 广东
推荐 苏醒主题 & WordPress 配置全指南
智能摘要 DeepSeek 这篇文章介绍了如何使用WordPress主题,涵盖从安装到配置的全过程。主要内容包括: 1. **WordPress基础**:WordPress是一种基于PHP和MySQL的博客平台,需要域名、主机和主题。 ...
  • WordPress 教程
  • wordpress教程
  • wordpress配置
14,469 3

我用的 WordPress 主题

2021 年单栏 WordPress 主题

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