Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php
if ( ! function_exists( 'quart_mikado_reset_options_map' ) ) {
/**
* Reset options panel
*/
function quart_mikado_reset_options_map() {
quart_mikado_add_admin_page(
array(
'slug' => '_reset_page',
'title' => esc_html__( 'Reset', 'quart' ),
'icon' => 'fa fa-retweet'
)
);
$panel_reset = quart_mikado_add_admin_panel(
array(
'page' => '_reset_page',
'name' => 'panel_reset',
'title' => esc_html__( 'Reset', 'quart' )
)
);
quart_mikado_add_admin_field(
array(
'type' => 'yesno',
'name' => 'reset_to_defaults',
'default_value' => 'no',
'label' => esc_html__( 'Reset to Defaults', 'quart' ),
'description' => esc_html__( 'This option will reset all Select Options values to defaults', 'quart' ),
'parent' => $panel_reset
)
);
}
add_action( 'quart_mikado_action_options_map', 'quart_mikado_reset_options_map', quart_mikado_set_options_map_position( 'reset' ) );
}
