Skip to content

Instantly share code, notes, and snippets.

@tomjn
Last active December 21, 2015 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomjn/7e4bd88eccd06b03c4f1 to your computer and use it in GitHub Desktop.
Save tomjn/7e4bd88eccd06b03c4f1 to your computer and use it in GitHub Desktop.
<?php
class Printer extends IHook_Object {
public $message ='';
public function run_hook() {
echo $this->message;
}
}
// print a message in the footer
$print = new Printer( 'wp_footer' );
$print->message = 'hello world!';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment