从wordpress 4.4 之后网页title的写法就不一样了,官方已经不再推荐使用wp_title()函数来获取网页标题,而是把网页标题变成一个主题功能。
主要的核心代码为:
<?php wp_title( '|', true, 'right' ); ?>
wp_title() 函数会根据条件标签函数判断当前的页面,生成并输出对应的网页标题。
这次wordpress更新之后,我么就要摒弃使用wp_title()函数,新的标题设置方法为:
在主题文件的functions.php中添加以下函数:
/**
*新的 网页标题设置方法
*/
function bing_add_theme_support_title(){
add_theme_support( 'title-tag' );
}
add_action( 'after_setup_theme', 'bing_add_theme_support_title' );
这段代码中,用add_theme_support()函数添加了"title-tag"功能,这就是新增的网页标题标签代码。加了这段函数后,就能在wp_head()函数输出一对
扩展功能
如果要实现title的一些变动,这次wordpress更新还添加了一些新的hook,让我们方便的控制网页标题的内容。
document_title_separator
这个函数用来修改title中的连接符,默认的连接符为"-",比如我们想要改为"|"。
/**
*标题分隔符修改成 “|”
*新的 网页标题设置方法
*/
function bing_title_separator_to_line(){
return '|';//自定义标题分隔符
}
add_filter( 'document_title_separator', 'bing_title_separator_to_line' );
document_title_parts
这个过滤器会传给我们标题的各个部分,是一个数组,可以修改数组来自定义最终生成的标题。
例如,yd77699云顶国际首页标题默认是 “网站名称 - 网站描述” 的形式,如果你不想要网站描述,可以删除数组中的 tagline。
/**
*yd77699云顶国际首页标题不显示网站描述
*新的 网页标题设置方法
*/
function bing_remove_tagline( $title ){
if( is_home() && isset( $title['tagline'] ) ) unset( $title['tagline'] );
return $title;
}
add_filter( 'document_title_parts', 'bing_remove_tagline' );
pre_get_document_title
可以完全自定义标题内容,比如我们把所有页面的标题都变为"余斗余斗"。
/**
*把所有页面的标题都改成 “余斗余斗”
*新的 网页标题设置方法
*/
function bing_pre_get_document_title(){
return '余斗余斗';//自定义标题内容
}
add_filter( 'pre_get_document_title', 'bing_pre_get_document_title' );
还能通过自定义字段的方式来定义不同文章的标题。
/**
*每篇文章自定义不同的标题
*新的 网页标题设置方法
*/
function bing_custom_post_document_title( $pre ){
if( is_singular() && $custom = get_post_meta( get_the_id(), 'custom_document_title', true ) ) $pre = $custom;
return $pre;
}
add_filter( 'pre_get_document_title', 'bing_custom_post_document_title' );
添加这段函数后,任何文章页都可以通过" custom_document_title"自定义字段来设置网页标题,如果有自定义的title就会添加设置的这个title,如果没有设置,就返回空值,使用默认title。
# 更多技巧,请关注「专题」