<plugin_name>_set_default_settings
-----------------------------------------------------------------------------------.
Description
do_action( '<plugin_name>_set_default_settings' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( '{$plugin_name}_set_default_settings' );
- The following example is for adding a hook callback.
- // define the <plugin_name>_set_default_settings callback
- function action_plugin_name_set_default_settings( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "{$plugin_name}_set_default_settings", 'action_plugin_name_set_default_settings', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "{$plugin_name}_set_default_settings", 'action_plugin_name_set_default_settings', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /admin/admin-init.php
- do_action( $this->plugin_name . '_set_default_settings' );