wpseek.com
				A WordPress-centric search engine for devs and theme authors
			wp_check_site_meta_support_prefilter › WordPress Function
Since5.1.0
Deprecatedn/a
› wp_check_site_meta_support_prefilter ( $check )
| Parameters: | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Aborts calls to site meta if it is not supported.
Source
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;
}