2016-11-17 69 views
0

我试图设置页面的标题改变yoast标题(自定义主题制造) 这是我的代码,但由于某种原因,没有得到“$ forumId”参数使用wpseo_title功能

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

回答

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 ; 
}