wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_check_site_meta_support_prefilter › WordPress Function

Od5.1.0
Przestarzałyn/a
wp_check_site_meta_support_prefilter ( $check )
Parametry:
  • (mixed) $check Skip-value for whether to proceed site meta function execution.
    Wymagane: Tak
Powrót:
  • (mixed) Original value of $check, or false if site meta is not supported.
Zdefiniowane na:
Codex:

Aborts calls to site meta if it is not supported.



Źródło

function wp_check_site_meta_support_prefilter( $check ) {
	if ( ! is_site_meta_supported() ) {
		/* translators: %s: Database table name. */
		_doing_it_wrong( __FUNCTION__, sprintf( __( 'The %s table is not installed. Please run the network database upgrade.' ), $GLOBALS['wpdb']->blogmeta ), '5.1.0' );
		return false;
	}

	return $check;
}