0

我正在尝试设置页面的标题(由自定义主题制作)这是我的代码,但由于某种原因它没有获得“$forumId”参数

$forumId=999;
add_filter('wpseo_title', 'filter_product_wpseo_title');
function filter_product_wpseo_title() {
        return 'My id= '. $forumId  ;
}
4

1 回答 1

2

您需要将 $forumId 设置为全局变量。请参阅下面的更新代码。

global $forumId;
$forumId=999;
add_filter('wpseo_title', 'filter_product_wpseo_title');
function filter_product_wpseo_title() {
        global $forumId;
        return 'My id= '. $forumId  ;
}
于 2016-11-18T06:47:17.690 回答