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