Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. // Hook function with action
  4. // add_action( hook_id, func_name, priority, number_of_arguments )
  5. add_action('thesis_hook_before_post','recent_post_by_author',10,2);
  6. function function_name ( $arg1, $arg2 ) {
  7. /* do stuff here */
  8. }
  9.  
  10. // At the place of action
  11. do_action( 'name-of-action', $arg1, $arg2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement