wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_prime_option_caches_by_group › WordPress Function

Seit6.4.0
Veraltetn/v
wp_prime_option_caches_by_group ( $option_group )
Parameter:
  • (string) $option_group The option group to load options for.
    Erforderlich: Ja
Definiert in:
Codex:

Primes the cache of all options registered with a specific option group.



Quellcode

function wp_prime_option_caches_by_group( $option_group ) {
	global $new_allowed_options;

	if ( isset( $new_allowed_options[ $option_group ] ) ) {
		wp_prime_option_caches( $new_allowed_options[ $option_group ] );
	}
}