-
-
Save tomjn/631548a24317c1603b79 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 MyClass { | |
function __construct() { | |
add_action( 'admin_init',array( $this, 'getStuffDone' ) ); | |
} | |
function getStuffDone() { | |
// .. This is where stuff gets done .. | |
} | |
} | |
$var = new MyClass(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment