Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページのタイトルを設定しようとしています (カスタム テーマで作成) これは私のコードですが、何らかの理由で "$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 ; }