我想在我的Wordpress网站上设置不同的META语法,具体取决于我使用的模板(5个页面模板和8个文章模板。 我通过yoast使用SEO,只能为所有页面添加ONE META语法,并为所有文章添加一个。 我试着在我的function.php上添加一个模板(例子)
$pref_nom = get_post_meta($post->ID, $pref_nom, true);
function prefecture_filter_wp_title( $title ) {
if ( is_page_template( 'pages-prefectures.php' ) ) {
return $pref_nom;
}
return $title;
}
add_filter( 'wp_title', 'prefecture_filter_wp_title' );
但我不行(注意没有声明$ pref_nom)
怎么了?