diff --git a/wp-admin/export.php b/wp-admin/export.php index cf50566df0..c4f25e442b 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -94,6 +94,8 @@ if ( isset( $_GET['download'] ) ) { $args['content'] = $_GET['content']; } + $args = apply_filters( 'wp_export_args', $args ); + export_wp( $args ); die(); } @@ -209,6 +211,8 @@ function export_date_options( $post_type = 'post' ) {

+ +