Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php
if ( ! function_exists( 'quart_mikado_set_title_centered_type_for_options' ) ) {
/**
* This function set centered title type value for title options map and meta boxes
*/
function quart_mikado_set_title_centered_type_for_options( $type ) {
$type['centered'] = esc_html__( 'Centered', 'quart' );
return $type;
}
add_filter( 'quart_mikado_filter_title_type_global_option', 'quart_mikado_set_title_centered_type_for_options' );
add_filter( 'quart_mikado_filter_title_type_meta_boxes', 'quart_mikado_set_title_centered_type_for_options' );
}
