WordPress增加了对title-tag
版本4.1中的功能和it\'s now a required feature 用于上传至回购协议的主题。
要实现此功能,请确保您的主题does not 将标题标签硬编码在header.php
, e、 g.:
<title><?php wp_title( \'|\', true, \'right\' ); ?></title>
使用标题标记支持配置主题,如下所示:
add_action( \'after_setup_theme\', \'wpse_theme_setup\' );
function wpse_theme_setup() {
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( \'title-tag\' );
}
要更改标题文本,请使用以下过滤器(
source):