I’m pretty stumped on this one. I’m using add_action inside my plugin class to do certain things- add scripts & styles to the head, wp_ajax, etc. Here’s the actions, in the __construct:
function __construct(){
add_action('admin_menu', array($this, 'sph_admin_menu'));
add_action('sph_header', array($this, 'sph_callback'));
add_action('sph_header_items', array($this, 'sph_default_menu'), 1);
add_action('sph_header_items', array($this, 'sph_searchform'), 2);
add_action('sph_header_items', array($this, 'sph_social'), 3);
//Below here they don't work. I have to call these outside of the class (but I need class variables within the functions)
add_action('wp_print_styles', array(&$this, 'sph_stylesheets'));
add_action('wp_print_scripts', array(&$this, 'sph_scripts'));
add_action( 'wp_ajax_nopriv_add_to_list', array(&$this, 'le_add_to_list'));
add_action( 'wp_ajax_add_to_list', array(&$this, 'le_add_to_list'));
add_action('init', array(&$this, 'register_menu'));
}
Anybody ever come across something like this? I’d really like to know how to use said hooks from within a class- it’s so messy having actions outside the class!
Sometimes certain hooks need to be fired at certain times. Example, some hooks need to be fired upon init.
Add this to your
__construct()
Then add this function, which will contain all hooks that need to be fired upon init.
Another Example:
You will want to read about the hooks and when they are fired. So you know when and where to trigger your actions. Plugin API/Action Reference
This is a pretty old question, but in case anyone is looking for an answer, I had a similar issue. I had a class
Plugin::init() was never getting called. I then realized my mistake. To instantiate the class I was doing this:
To fix it, I just changed the instantiation code to:
The other option would be to use a different hook in the constructor:
Or an earlier hook in the instantiation: