aioseop_global_settings_footer
The All In One SEO Pack aioseop global settings footer hook.
Description
Parameters (1)
- 0. $location (unknown)
- The location.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'aioseop_global_settings_footer', $location );
- The following example is for adding a hook callback.
- // define the aioseop_global_settings_footer callback
- function action_aioseop_global_settings_footer( $location ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'aioseop_global_settings_footer', 'action_aioseop_global_settings_footer', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'aioseop_global_settings_footer', 'action_aioseop_global_settings_footer', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /admin/aioseop_module_class.php
- do_action( 'aioseop_global_settings_footer', $location ); ?>