如果您正在谈论添加元标记和更改它们所依赖的标题wp_head
在</head>
生成标记。
为了更改标题,他们可能会使用wp_title
滤器旧版本的“all-in-one seo”用于缓冲标题部分并替换标题标签,例如
add_action(\'init\',\'start_buf\');
function start_buf( {
ob_start();
}
add_action(\'wp_head\',\'end_buf\');
function end_buf() {
$head = ob_get_contents();
$head = string replace \'<title>....</title>\' in $head with the configured title
ob_end_clean();
echo $head;
}