@@ 213-217 (lines=5) @@ | ||
210 | _wp_call_all_hook($args); |
|
211 | } |
|
212 | ||
213 | if ( !isset($wp_filter[$tag]) ) { |
|
214 | if ( isset($wp_filter['all']) ) |
|
215 | array_pop($wp_current_filter); |
|
216 | return $value; |
|
217 | } |
|
218 | ||
219 | if ( !isset($wp_filter['all']) ) |
|
220 | $wp_current_filter[] = $tag; |
|
@@ 273-277 (lines=5) @@ | ||
270 | _wp_call_all_hook($all_args); |
|
271 | } |
|
272 | ||
273 | if ( !isset($wp_filter[$tag]) ) { |
|
274 | if ( isset($wp_filter['all']) ) |
|
275 | array_pop($wp_current_filter); |
|
276 | return $args[0]; |
|
277 | } |
|
278 | ||
279 | if ( !isset($wp_filter['all']) ) |
|
280 | $wp_current_filter[] = $tag; |