Advertisement
digamber

Incorrect Format for hooking actions

Nov 29th, 2015
877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. /*digthis.php
  2. template name: digthis example template */
  3. do_action('digthis');
  4. /* Adding Acton this way will not work */
  5. add_action('digthis', 'digthis_hello_world' );
  6. function('digthis_hello_world'){
  7.     echo 'hello world';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement