You appear to be a bot. Output may be restricted Description Usage Tests_Actions::action_that_causes_recursion( $tag ); Parameters $tag ( mixed ) required – Returns void Source File name: wordpress-develop-tests/phpunit/tests/actions.php Lines: 1 to 9 of 9 public function action_that_causes_recursion( $tag ) { static $recursing = false; if ( ! $recursing ) { $recursing = true; do_action( $tag, $tag ); } $recursing = false; } View on GitHub