wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_check_site_meta_support_prefilter › WordPress Function

Since5.1.0
已弃用n/a
wp_check_site_meta_support_prefilter ( $check )
参数:
  • (mixed) $check Skip-value for whether to proceed site meta function execution.
    Required: Yes
返回:
  • (mixed) Original value of $check, or false if site meta is not supported.
定义在:
文档:

Aborts calls to site meta if it is not supported.



源码

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;
}