LoginSignup
2
3

More than 5 years have passed since last update.

WordPress the_content で本文が展開される前または後にフィルターをかけるには

Last updated at Posted at 2016-05-17

記事本文を加工・解析したい場合は the_content に対してフィルターをかけます。

優先度を設定せずに (デフォルト $priority = 10 ) ただ普通にかけた場合は、下記ファイル内に定義されているように、本文内のショートコードが展開される前に実行されてしまうので

wp-includes/default-filters.php
// Shortcodes
add_filter( 'the_content', 'do_shortcode', 11 ); // AFTER wpautop()

展開後にフィルターをかけたい場合は

add_filter('the_content', 'the_content_after_filter', 12);

のように設定します。

ちなみに展開前にフィルターをかける前は

add_filter('the_content', 'the_content_before_filter', 10); // 第三引数は省略しても同じ

のように設定します。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3