/home/techb158/public_html/wp-admin
NameSizeModeActions
css/-0777rm
images/-0777rm
includes/-0777rm
js/-0777rm
maint/-0777rm
network/-0777rm
user/-0777rm
about.php164850666editdlrm
admin-ajax.php51460666editdlrm
admin-footer.php28040666editdlrm
admin-functions.php4720666editdlrm
admin-header.php92840666editdlrm
admin-post.php20210666editdlrm
admin.php129350666editdlrm
async-upload.php56040666editdlrm
authorize-application.php103350666editdlrm
comment.php116430666editdlrm
contribute.php56560666editdlrm
credits.php41410666editdlrm
custom-background.php4820666editdlrm
custom-header.php4920666editdlrm
customize.php115860666editdlrm
edit-comments.php144840666editdlrm
edit-form-advanced.php294810666editdlrm
edit-form-blocks.php155280666editdlrm
edit-form-comment.php139800666editdlrm
edit-link-form.php63470666editdlrm
edit-tag-form.php106580666editdlrm
edit-tags.php225100666editdlrm
edit.php199520666editdlrm
erase-personal-data.php75050666editdlrm
export-personal-data.php79400666editdlrm
export.php112650666editdlrm
font-library.php14800666editdlrm
freedoms.php45740666editdlrm
import.php77660666editdlrm
index.php10880444editdlrm
install-helper.php69610666editdlrm
install.php183750666editdlrm
kwa.txt10644editdlrm
link-add.php9340666editdlrm
link-manager.php43610666editdlrm
link-parse-opml.php27210666editdlrm
link.php29570666editdlrm
load-scripts.php20700666editdlrm
load-styles.php29950666editdlrm
media-new.php32490666editdlrm
media-upload.php36680666editdlrm
media.php8190666editdlrm
menu-header.php100520666editdlrm
menu.php181340666editdlrm
moderation.php3070666editdlrm
ms-admin.php1960666editdlrm
ms-delete-site.php46130666editdlrm
ms-edit.php2160666editdlrm
ms-options.php2290666editdlrm
ms-sites.php2150666editdlrm
ms-themes.php2170666editdlrm
ms-upgrade-network.php2190666editdlrm
ms-users.php2150666editdlrm
my-sites.php48310666editdlrm
nav-menus.php501990666editdlrm
network.php55230666editdlrm
options-connectors.php15430666editdlrm
options-discussion.php164030666editdlrm
options-general.php228550666editdlrm
options-head.php6140666editdlrm
options-media.php66400666editdlrm
options-permalink.php224910666editdlrm
options-privacy.php107040666editdlrm
options-reading.php101980666editdlrm
options-writing.php94040666editdlrm
options.php142660666editdlrm
plugin-editor.php140710666editdlrm
plugin-install.php74330666editdlrm
plugins.php307440666editdlrm
post-new.php27680666editdlrm
post.php108210666editdlrm
press-this.php24700666editdlrm
privacy-policy-guide.php37560666editdlrm
privacy.php25120666editdlrm
profile.php2830666editdlrm
revision.php58360666editdlrm
setup-config.php179280666editdlrm
site-editor.php124830666editdlrm
site-health-info.php41730666editdlrm
site-health.php104270666editdlrm
term.php22490666editdlrm
theme-editor.php172790666editdlrm
theme-install.php243150666editdlrm
themes.php497280666editdlrm
tools.php35140666editdlrm
update-core.php462020666editdlrm
update.php130620666editdlrm
upgrade-functions.php3410666editdlrm
upgrade.php63900666editdlrm
upload.php152920666editdlrm
user-edit.php418440666editdlrm
user-new.php246640666editdlrm
users.php256980666editdlrm
widgets-form-blocks.php52350666editdlrm
widgets-form.php195880666editdlrm
widgets.php11120666editdlrm
Edit: /home/techb158/public_html/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 ) : ?>