您可以考虑使用这两种过滤器wpseo_metadesc
(用于元描述)和wpseo_title
(用于标题)。其思想是根据您是否满足某些条件来更改标题和/或描述的值。
因此,您的代码看起来像这样:
add_filter(\'wpseo_metadesc\',\'custom_meta\');
function custom_meta( $desc ){
if (/* do your test here to check template or any other values*/) {
$desc = "Change the description";
}
return $desc;
}
add_filter(\'wpseo_title\',\'custom_title\');
function custom_title( $title ){
if (/* do your test here to check template or any other values*/) {
$title = "Change the title";
}
return $title;
}
例如,您可以考虑函数
is_page_template() 为了你的测试。