Domain: antoinekatan.com
Server Adress: 10.127.20.23

privdayz.com

/home/xdxuekl/www/wp-content/themes/quart/framework/modules/title/types/standard/
Dosya Yükle :
Current File : /home/xdxuekl/www/wp-content/themes/quart/framework/modules/title/types/standard/functions.php

<?php

if ( ! function_exists( 'quart_mikado_set_title_standard_type_for_options' ) ) {
	/**
	 * This function set standard title type value for title options map and meta boxes
	 */
	function quart_mikado_set_title_standard_type_for_options( $type ) {
		$type['standard'] = esc_html__( 'Standard', 'quart' );
		
		return $type;
	}
	
	add_filter( 'quart_mikado_filter_title_type_global_option', 'quart_mikado_set_title_standard_type_for_options' );
	add_filter( 'quart_mikado_filter_title_type_meta_boxes', 'quart_mikado_set_title_standard_type_for_options' );
}

if ( ! function_exists( 'quart_mikado_set_title_standard_type_as_default_options' ) ) {
	/**
	 * This function set default title type value for global title option map
	 */
	function quart_mikado_set_title_standard_type_as_default_options( $type ) {
		$type = 'standard';
		
		return $type;
	}
	
	add_filter( 'quart_mikado_filter_default_title_type_global_option', 'quart_mikado_set_title_standard_type_as_default_options' );
}

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.