export_wp action-hook . WP 2.3.0
Fires at the beginning of an export, before any headers are sent.
Usage
add_action( 'export_wp', 'action_function_name_5264' ); function action_function_name_5264( $args ){ // action... }
- $args(array)
- An array of export arguments.
Changelog
Since 2.3.0 | Introduced. |
Where the hook is called
export_wp
wp-admin/includes/export.php 76
do_action( 'export_wp', $args );