私はプラグインをコーディングしており、短いコードを使用してページ コンテンツをレンダリングしています。ページのタイトルを変更したい。私はこれを使用しました:
// Change the title of the page of the charts to add the current month.
add_filter('the_title', 'charts_title', 10, 2);
function charts_title($title, $id) {
$title .= ' ' . date('F Y');
return $title;
}
ただし、すべての投稿とページに対してそれを行います。私が作成したショートコードを含むページに対してのみそれを行うことはできますか? 私はそれをやろうとしましたが、うまくいきません。
add_shortcode('charts-vote', 'charts_vote');
function charts_vote($atts) {
// Add the filter only in the short code function callback.
add_filter('the_title', 'charts_title', 10, 2);
// ... //
return $content;
}
誰か助けてくれませんか?