📅  最后修改于: 2022-03-11 14:56:18.650000             🧑  作者: Mango
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;
}