Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created January 19, 2017 08:44
Show Gist options
  • Select an option

  • Save hsleonis/10494f39b0fc82236dc9a61cd2c60cdd to your computer and use it in GitHub Desktop.

Select an option

Save hsleonis/10494f39b0fc82236dc9a61cd2c60cdd to your computer and use it in GitHub Desktop.
WP pass arguments to action function
<?php
// Hook function with action
// add_action( hook_id, func_name, priority, number_of_arguments )
add_action('thesis_hook_before_post','recent_post_by_author',10,2);
function function_name ( $arg1, $arg2 ) {
/* do stuff here */
}
// At the place of action
do_action( 'name-of-action', $arg1, $arg2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment