HEX
Server: Apache
System: Linux webm005.cluster121.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: adventp (418412)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/adventp/www/wp-content/themes/brooklyn/unite-custom/includes/deprecated-option-keys.php
<?php

 /**
   * Deprecated Theme Option Keys
   */ 

function _ut_deprecated_theme_options_keys( $option_id ) {
	
	// old > new
	$option_keys = array(
		
		// caption title
		'ut_global_hero_company_slogan_color'				=> 'ut_global_caption_title_color',
		
		// caption slogan update
		'ut_global_hero_expertise_slogan_color' 			=> 'ut_global_caption_slogan_color',
		'ut_global_hero_expertise_slogan_background_color'  => 'ut_global_caption_slogan_background_color',
		'ut_global_hero_expertise_slogan_border_color'		=> 'ut_global_caption_slogan_border_color'
		

	);
	
	return $option_keys;

}

add_filter( 'ut_deprecated_option_keys', '_ut_deprecated_theme_options_keys', 20, 1 );