wp_high_priority_element_flag

函数
wp_high_priority_element_flag ( $value = null )
Access
Private
参数
  • (bool) $value Optional. Used to change the static variable. Default null.
    Required:
    Default: null
返回值
  • (bool) Returns true if high-priority element was marked already, otherwise false.
定义位置
相关方法
wp_get_elements_class_namewp_print_community_events_markupwp_print_community_events_templateswp_mediaelement_fallbackwp_recovery_mode_nag
引入
6.3.0
弃用
-

访问一个标志,指示元素是否可能是 ” fetchpriority='high' “的候选元素。

function wp_high_priority_element_flag( $value = null ) {
	static $high_priority_element = true;

	if ( is_bool( $value ) ) {
		$high_priority_element = $value;
	}

	return $high_priority_element;
}

常见问题

FAQs
查看更多 >