1
私はフィルターが私のコンテンツ-post.phpに今のfunctions.phpに "the_content" のために条件付き "the_content" フィルタwordpressの
add_filter ('the_content', 'testFilter');
function testFilter($content) {
if(is_single()) {
$content.="Append content";
}
return $content;
}
を追加しています。私は次の行を持っています:
the_content(__('Test;', 'tag'));
content-post.phpページにtestFilterを適用しないようにするにはどうしたらいいですか?
私は、第3のパラメータを11に設定していることがわかります。これは優先順位11 ... 11の特定の理由はありますか? – Rishi
これは優先順位です。 Bydefaultは10に設定されていたので、11に優先度を追加しました。 – vrajesh
ありがとう..私は参照用にこれを追加します。 https://codex.wordpress.org/Function_Reference/remove_filter – Rishi