为每页/帖子模板定义不同的META模板

时间:2014-11-26 15:48:24

标签: php wordpress templates wordpress-plugin seo

我想在我的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)

怎么了?

提前感谢您的帮助。

0 个答案:

没有答案