-
-
Save tommcfarlin/2923ba894dda0067dc3f0b89779dbbe0 to your computer and use it in GitHub Desktop.
[WordPress] Properly Writing WordPress Plugin Constructors
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 | |
public function __construct( $data_manager ) { | |
$this->data_manager = $data_manager; | |
} | |
public function init() { | |
add_action( | |
'hook_for_doing_something', | |
array( $this, 'do_something' ), | |
10, 1 | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment