aiosp_seometa_post_meta_analyze
The All In One SEO Pack aiosp seometa post meta analyze hook.
Description
do_action( 'aiosp_seometa_post_meta_analyze', (unknown) $output, (unknown) $old_platform, (unknown) $new_platform );
Parameters (3)
- 0. $output (unknown)
- The output.
- 1. $old_platform (unknown)
- The old platform.
- 2. $new_platform (unknown)
- The new platform.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'aiosp_seometa_post_meta_analyze', $output, $old_platform, $new_platform );
- The following example is for adding a hook callback.
- // define the aiosp_seometa_post_meta_analyze callback
- function action_aiosp_seometa_post_meta_analyze( $output, $old_platform, $new_platform ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'aiosp_seometa_post_meta_analyze', 'action_aiosp_seometa_post_meta_analyze', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'aiosp_seometa_post_meta_analyze', 'action_aiosp_seometa_post_meta_analyze', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /admin/meta_import.php
- do_action( 'aiosp_seometa_post_meta_analyze', $output, $old_platform, $new_platform );