📜  yoast 描述过滤器 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:18.650000             🧑  作者: Mango

代码示例1
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;
}