whoami7 - Manager
:
/
home
/
analuakl
/
bents.in
/
wp-content
/
plugins
/
insight-core
/
includes
/
customizer
/
Upload File:
files >> /home/analuakl/bents.in/wp-content/plugins/insight-core/includes/customizer/export.php
<?php /* Add admin customizer export page */ function insight_add_customizer_export_page() { add_submenu_page( 'options.php', '', '', 'edit_theme_options', 'insight_export_customizer_options', 'insight_customizer_options_exporter' ); } add_action( 'admin_menu', 'insight_add_customizer_export_page' ); if ( ! empty( $_REQUEST['page'] ) && $_REQUEST['page'] == 'insight_export_customizer_options' ) { ob_start(); } function insight_customizer_options_exporter() { $blogname = strtolower( str_replace( ' ', '-', get_option( 'blogname' ) ) ); $file_name = $blogname . date( 'Ydm' ) . '.txt'; $options = get_theme_mods(); unset( $options['nav_menu_locations'] ); ob_clean(); header( "Content-type: application/text", true, 200 ); header( "Content-Disposition: attachment; filename=\"$file_name\"" ); header( "Pragma: no-cache" ); header( "Expires: 0" ); echo( serialize( $options ) ); die(); }
Copyright ©2021 || Defacer Indonesia