/var/www/qr4y.com/www/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php164850644editdlrm
admin-ajax.php51460644editdlrm
admin-footer.php28040644editdlrm
admin-functions.php4720644editdlrm
admin-header.php92840644editdlrm
admin-post.php20210644editdlrm
admin.php129350644editdlrm
async-upload.php56040644editdlrm
authorize-application.php103350644editdlrm
comment.php116430644editdlrm
contribute.php56560644editdlrm
credits.php41410644editdlrm
custom-background.php4820644editdlrm
custom-header.php4920644editdlrm
customize.php115860644editdlrm
edit-comments.php144840644editdlrm
edit-form-advanced.php294810644editdlrm
edit-form-blocks.php155280644editdlrm
edit-form-comment.php139800644editdlrm
edit-link-form.php63470644editdlrm
edit-tag-form.php106580644editdlrm
edit-tags.php225100644editdlrm
edit.php199520644editdlrm
erase-personal-data.php75050644editdlrm
export-personal-data.php79400644editdlrm
export.php112650644editdlrm
font-library.php14800644editdlrm
freedoms.php45740644editdlrm
import.php77660644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php183750644editdlrm
link-add.php9340644editdlrm
link-manager.php43610644editdlrm
link-parse-opml.php27210644editdlrm
link.php29570644editdlrm
load-scripts.php20700644editdlrm
load-styles.php29950644editdlrm
media-new.php32490644editdlrm
media-upload.php36680644editdlrm
media.php8190644editdlrm
menu-header.php100520644editdlrm
menu.php181340644editdlrm
moderation.php3070644editdlrm
ms-admin.php1960644editdlrm
ms-delete-site.php46130644editdlrm
ms-edit.php2160644editdlrm
ms-options.php2290644editdlrm
ms-sites.php2150644editdlrm
ms-themes.php2170644editdlrm
ms-upgrade-network.php2190644editdlrm
ms-users.php2150644editdlrm
my-sites.php48310644editdlrm
nav-menus.php501990644editdlrm
network.php55230644editdlrm
options-connectors.php15430644editdlrm
options-discussion.php164030644editdlrm
options-general.php228550644editdlrm
options-head.php6140644editdlrm
options-media.php66400644editdlrm
options-permalink.php224910644editdlrm
options-privacy.php107040644editdlrm
options-reading.php101980644editdlrm
options-writing.php94040644editdlrm
options.php142660644editdlrm
plugin-editor.php140710644editdlrm
plugin-install.php74330644editdlrm
plugins.php307440644editdlrm
post-new.php27680644editdlrm
post.php108210644editdlrm
press-this.php24700644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php25120644editdlrm
profile.php2830644editdlrm
revision.php58360644editdlrm
setup-config.php179280644editdlrm
site-editor.php124830644editdlrm
site-health-info.php41730644editdlrm
site-health.php104270644editdlrm
term.php22490644editdlrm
theme-editor.php172790644editdlrm
theme-install.php243150644editdlrm
themes.php497280644editdlrm
tools.php35140644editdlrm
update-core.php462020644editdlrm
update.php130620644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php63900644editdlrm
upload.php152920644editdlrm
user-edit.php418440644editdlrm
user-new.php246640644editdlrm
users.php256980644editdlrm
widgets-form-blocks.php52350644editdlrm
widgets-form.php195880644editdlrm
widgets.php11120644editdlrm
Edit: /var/www/qr4y.com/www/wp-admin/export.php (11265B)
add_help_tab( array( 'id' => 'overview', 'title' => __( 'Overview' ), 'content' => '

' . __( 'You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status.' ) . '

' . '

' . __( 'Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.' ) . '

', ) ); get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Export' ) . '

' . '

' . __( 'Support forums' ) . '

' ); // If the 'download' URL parameter is set, a WXR export file is baked and returned. if ( isset( $_GET['download'] ) ) { $args = array(); if ( ! isset( $_GET['content'] ) || 'all' === $_GET['content'] ) { $args['content'] = 'all'; } elseif ( 'posts' === $_GET['content'] ) { $args['content'] = 'post'; if ( $_GET['cat'] ) { $args['category'] = (int) $_GET['cat']; } if ( $_GET['post_author'] ) { $args['author'] = (int) $_GET['post_author']; } if ( $_GET['post_start_date'] || $_GET['post_end_date'] ) { $args['start_date'] = $_GET['post_start_date']; $args['end_date'] = $_GET['post_end_date']; } if ( $_GET['post_status'] ) { $args['status'] = $_GET['post_status']; } } elseif ( 'pages' === $_GET['content'] ) { $args['content'] = 'page'; if ( $_GET['page_author'] ) { $args['author'] = (int) $_GET['page_author']; } if ( $_GET['page_start_date'] || $_GET['page_end_date'] ) { $args['start_date'] = $_GET['page_start_date']; $args['end_date'] = $_GET['page_end_date']; } if ( $_GET['page_status'] ) { $args['status'] = $_GET['page_status']; } } elseif ( 'attachment' === $_GET['content'] ) { $args['content'] = 'attachment'; if ( $_GET['attachment_start_date'] || $_GET['attachment_end_date'] ) { $args['start_date'] = $_GET['attachment_start_date']; $args['end_date'] = $_GET['attachment_end_date']; } } else { $args['content'] = $_GET['content']; } /** * Filters 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 ); die(); } require_once ABSPATH . 'wp-admin/admin-header.php'; /** * Creates the date options fields for exporting a given post type. * * @since 3.1.0 * * @global wpdb $wpdb WordPress database abstraction object. * @global WP_Locale $wp_locale WordPress date and time locale object. * * @param string $post_type The post type. Default 'post'. */ function export_date_options( $post_type = 'post' ) { global $wpdb, $wp_locale; $months = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month FROM $wpdb->posts WHERE post_type = %s AND post_status != 'auto-draft' ORDER BY post_date DESC", $post_type ) ); $month_count = count( $months ); if ( ! $month_count || ( 1 === $month_count && 0 === (int) $months[0]->month ) ) { return; } foreach ( $months as $date ) { if ( 0 === (int) $date->year ) { continue; } $month = zeroise( $date->month, 2 ); printf( '', esc_attr( $date->year . '-' . $month ), $wp_locale->get_month( $month ) . ' ' . $date->year ); } } ?>

false, 'can_export' => true, ), 'objects' ) as $post_type ) : ?>