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 に答える