我试图设置页面标题(由自定义主题生成)
这是我的代码,但是由于某些原因它没有得到“$forumid”参数

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

最佳答案

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

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

08-25 14:59