Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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. }