pre_site_option
pre_site_option
Appears in: wordpress-6.9
Hook Type: filter
Displaying hooks found in version: wordpress-6.9apply_filters('pre_site_option') is found 1 times:
- /wp-includes/option.php line 2057
* @param int $network_id ID of the network. * @param mixed $default_value The fallback value to return if the option does not exist. * Default false. */ $pre = apply_filters( 'pre_site_option', $pre, $option, $network_id, $default_value ); if ( false !== $pre ) { return $pre; } // Prevent non-existent options from triggering multiple queries.