|
@@ 424-427 (lines=4) @@
|
| 421 |
|
function do_action($tag, $arg = '') { |
| 422 |
|
global $wp_filter, $wp_actions, $wp_current_filter; |
| 423 |
|
|
| 424 |
|
if ( ! isset($wp_actions[$tag]) ) |
| 425 |
|
$wp_actions[$tag] = 1; |
| 426 |
|
else |
| 427 |
|
++$wp_actions[$tag]; |
| 428 |
|
|
| 429 |
|
// Do 'all' actions first |
| 430 |
|
if ( isset($wp_filter['all']) ) { |
|
@@ 494-497 (lines=4) @@
|
| 491 |
|
function do_action_ref_array($tag, $args) { |
| 492 |
|
global $wp_filter, $wp_actions, $wp_current_filter; |
| 493 |
|
|
| 494 |
|
if ( ! isset($wp_actions[$tag]) ) |
| 495 |
|
$wp_actions[$tag] = 1; |
| 496 |
|
else |
| 497 |
|
++$wp_actions[$tag]; |
| 498 |
|
|
| 499 |
|
// Do 'all' actions first |
| 500 |
|
if ( isset($wp_filter['all']) ) { |