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