Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created November 21, 2016 15:32
Show Gist options
  • Save tommcfarlin/2923ba894dda0067dc3f0b89779dbbe0 to your computer and use it in GitHub Desktop.
Save tommcfarlin/2923ba894dda0067dc3f0b89779dbbe0 to your computer and use it in GitHub Desktop.
[WordPress] Properly Writing WordPress Plugin Constructors
<?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