diff --git a/src/wp-admin/export.php b/src/wp-admin/export.php index fc491b3b3a..46d3dccee2 100644 --- a/src/wp-admin/export.php +++ b/src/wp-admin/export.php @@ -94,6 +94,13 @@ if ( isset( $_GET['download'] ) ) { $args['content'] = $_GET['content']; } + /** + * Filter the export args. + * + * @since 3.5.0 + * + * @param array $args The arguments to send to the exporter. + */ $args = apply_filters( 'export_args', $args ); export_wp( $args ); @@ -211,7 +218,14 @@ function export_date_options( $post_type = 'post' ) {

- +