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



wp_check_term_meta_support_prefilter › WordPress Function

Seit5.0.0
Veraltetn/v
wp_check_term_meta_support_prefilter ( $check )
Parameter:
  • (mixed) $check Skip-value for whether to proceed term meta function execution.
    Erforderlich: Ja
Gibt zurück:
  • (mixed) Original value of $check, or false if term meta is not supported.
Definiert in:
Codex:

Aborts calls to term meta if it is not supported.



Quellcode

function wp_check_term_meta_support_prefilter( $check ) {
	if ( get_option( 'db_version' ) < 34370 ) {
		return false;
	}

	return $check;
}