You appear to be a bot. Output may be restricted
Description
bar invokes "foobar" action hook
Usage
bar();
Parameters
Returns
voidSource
File name: foobar/foobar.phpLines:
1 to 18 of 18
function bar() { /** * Invoke the 'foobar' action * * Let other plugins know that someone's called foo() which called bar() * * @param */ do_action( "foobar" ); /** * Invoke the "barfoo" action * * Let other plugins know that bar() was called by foo() * * @param string $barfoo - always set to "barfoo" */ do_action( "barfoo", "barfoo" ); }