before_doing_aioseop_updates
The All In One SEO Pack before doing aioseop updates hook.
Description
do_action( 'before_doing_aioseop_updates' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'before_doing_aioseop_updates' );
- The following example is for adding a hook callback.
- // define the before_doing_aioseop_updates callback
- function action_before_doing_aioseop_updates( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'before_doing_aioseop_updates', 'action_before_doing_aioseop_updates', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'before_doing_aioseop_updates', 'action_before_doing_aioseop_updates', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /inc/aioseop_updates_class.php
- do_action( 'before_doing_aioseop_updates' );