-
-
Save tomjn/7e4bd88eccd06b03c4f1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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