Wordpress 4.4.0+ 自定义页面title标签的方法
程序员文章站
2022-07-14 08:07:40
...
4.4.0版本前,使用wp_title()
是很普遍的。而4.1.0
引入了title-tag,可以使用
function theme_slug_setup() {
add_theme_support( 'title-tag' );
}
add_action( 'after_setup_theme', 'theme_slug_setup' );
来加入theme
支持。
4.4.0
版本开始,加入了wp_get_document_title()这个函数,而wp_title
已经deprecated
不推荐使用。
在header.php
中,
<title><?php echo wp_get_document_title(); ?></title>
在functions.php
里,添加如下代码:
<?php
function custom_document_title_separator()
{
$separator = ' | ';
return $separator;
}
add_filter('document_title_separator', 'custom_document_title_separator');
function reform_page_title($title)
{
$title['tagline'] = 'Site description when on home page.';
$title['page'] = 'Page number if paginated.';
$title['site'] = 'Site title when not on home page.';
return $title;
}
add_filter('document_title_parts', 'reform_page_title', 10, 1);
?>
以上代码中custom_document_title_separator
用于添加自定义的分隔符号,reform_page_title
是调用document_title_parts
这个hook
的时候,我们可以对已经生成的title
进行二次修改。所以如果不使用这个hook
,也是完全没有问题的。
这样一来,页面的title
就都已经生成好了!
注意:
如果使用了Yoast SEO
这个插件,那么我们需要在**插件后在functions.php
中添加以下代码(WPSEO (~3+) and WordPress (4.4+))来阻止title
被重写:
function disableYoastTitleRewrite() {
if (class_exists('WPSEO_Frontend') {
$wpseo_front = WPSEO_Frontend::get_instance();
remove_filter( 'pre_get_document_title', array( $wpseo_front, 'title' ), 15 );
remove_filter( 'wp_title', array( $wpseo_front, 'title' ), 15 );
}
}
add_action( 'init', 'disableYoastTitleRewrite');
上一篇: vue踩坑填坑(四):在vue单页中修改title
下一篇: C11的原子性操作