PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/demo2024feb.kerihosting.com/wp-content/themes/genesis/lib/admin/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/demo2024feb.kerihosting.com/wp-content/themes/genesis/lib/admin/sanitization.php |
<?php /** * Genesis Framework. * * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances. * Please do all modifications in the form of a child theme. * * @package Genesis\Settings Sanitizer * @author StudioPress * @license GPL-2.0-or-later * @link https://my.studiopress.com/themes/genesis/ */ /** * Registers an option sanitization filter. * * If the option is an "array" option type with "sub-options", you have to use the third param to specify the * sub-option or sub-options you want the filter to apply to. DO NOT call this without the third parameter on an option * that is an array option, because in that case it will apply that filter to the array(), not each member. * * Use the 'genesis_settings_sanitizer_init' action to be notified when this function is safe to use * * @since 1.7.0 * * @param string $filter The filter to call (see Genesis_Settings_Sanitizer::$available_filters for options). * @param string $option The WordPress option name. * @param string|array $suboption Optional. The sub-option or sub-options you want to filter. * @return true True when complete. */ function genesis_add_option_filter( $filter, $option, $suboption = null ) { return Genesis_Settings_Sanitizer::$instance->add_filter( $filter, $option, $suboption ); } add_action( 'admin_init', 'genesis_settings_sanitizer_init' ); /** * Instantiate the Sanitizer. * * @since 1.7.0 */ function genesis_settings_sanitizer_init() { new Genesis_Settings_Sanitizer( new Genesis_Sanitizer ); }