我正在尝试设置页面标题(由自定义主题制作) 这是我的代码,但由于某种原因它没有得到“$ forumId”参数
$forumId=999;
add_filter('wpseo_title', 'filter_product_wpseo_title');
function filter_product_wpseo_title() {
return 'My id= '. $forumId ;
}
答案 0 :(得分: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 ;
}