2017-01-10 20 views
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を適用しないようにするにはどうしたらいいですか?

答えて

0

機能の上にthe_content(__('Test;','tag'))を追加します。

+0

私は、第3のパラメータを11に設定していることがわかります。これは優先順位11 ... 11の特定の理由はありますか? – Rishi

+0

これは優先順位です。 Bydefaultは10に設定されていたので、11に優先度を追加しました。 – vrajesh

+0

ありがとう..私は参照用にこれを追加します。 https://codex.wordpress.org/Function_Reference/remove_filter – Rishi

関連する問題