document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /* correct way to add to an action hook or filter*/
  2. function digthis_hello_world(){
  3. echo \'hello\';
  4. };
  5. add_action(\'digthis\', \'digthis_hello_world\');
  6. do_action(\'digthis\');
');