Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php
if ( ! function_exists( 'quart_core_reviews_map' ) ) {
function quart_core_reviews_map() {
$reviews_panel = quart_mikado_add_admin_panel(
array(
'title' => esc_html__( 'Reviews', 'quart-core' ),
'name' => 'panel_reviews',
'page' => '_page_page'
)
);
quart_mikado_add_admin_field(
array(
'parent' => $reviews_panel,
'type' => 'text',
'name' => 'reviews_section_title',
'label' => esc_html__( 'Reviews Section Title', 'quart-core' ),
'description' => esc_html__( 'Enter title that you want to show before average rating on your page', 'quart-core' ),
)
);
quart_mikado_add_admin_field(
array(
'parent' => $reviews_panel,
'type' => 'textarea',
'name' => 'reviews_section_subtitle',
'label' => esc_html__( 'Reviews Section Subtitle', 'quart-core' ),
'description' => esc_html__( 'Enter subtitle that you want to show before average rating on your page', 'quart-core' ),
)
);
}
add_action( 'quart_mikado_action_additional_page_options_map', 'quart_core_reviews_map', 75 ); //one after elements
}
