diff -r f507feede89a -r 09a1c134465b web/wp-admin/export.php --- a/web/wp-admin/export.php Wed Dec 19 12:35:13 2012 -0800 +++ b/web/wp-admin/export.php Wed Dec 19 17:46:52 2012 -0800 @@ -16,7 +16,12 @@ require_once('./includes/export.php'); $title = __('Export'); -function add_js() { +/** + * Display JavaScript on the page. + * + * @since 3.5.0 + */ +function export_add_js() { ?> add_help_tab( array( 'id' => 'overview', @@ -89,6 +94,8 @@ $args['content'] = $_GET['content']; } + $args = apply_filters( 'export_args', $args ); + export_wp( $args ); die(); } @@ -204,7 +211,9 @@

- + + +