tumblr_importing_post
The Tumblr Importer tumblr importing post hook.
Description
Parameters (1)
- 0. $post (unknown)
- The post.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'tumblr_importing_post', $post );
- The following example is for adding a hook callback.
- // define the tumblr_importing_post callback
- function action_tumblr_importing_post( $post ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'tumblr_importing_post', 'action_tumblr_importing_post', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'tumblr_importing_post', 'action_tumblr_importing_post', 10, 1 );
Defined (2)
The action is defined in the following location(s).
- /tumblr-importer.php
- do_action( 'tumblr_importing_post', $post );
- do_action( 'tumblr_importing_post', $post );