Description
This action hook comes after the plugin goes through its initial setup.
When this hook is reached, all of the plugins constants have been defined and all settings loaded. Also, key WP hooks have been added
Parameters
This action is not passed any parameters.
Changelog
Introduced in version 2.9.0.
Source
wpmem_after_init is located in wp-members.php
Usage
add_action( 'wpmem_after_init', 'my_init_function' ); function my_init_function() { /* * Handle actions you need to come after plugin initialization. */ do_my_stuff(); }
See a list of all filter and action hooks