wp_resource_hints

过滤钩子
apply_filters( 'wp_resource_hints', $urls, $relation_type )
参数
  • (array) $urls { Array of resources and their attributes, or URLs to print for resource hints. @type array|string ...$0 { Array of resource attributes, or a URL string. @type string $href URL to include in resource hints. Required. @type string $as How the browser should treat the resource (`script`, `style`, `image`, `document`, etc). @type string $crossorigin Indicates the CORS policy of the specified resource. @type float $pr Expected probability that the resource hint will be used. @type string $type Type of the resource (`text/html`, `text/css`, etc). } }
    Required:
  • (string) $relation_type The relation type the URLs are printed for, e.g. 'preconnect' or 'prerender'.
    Required:
定义位置
相关勾子
wp_preload_resourceswp_signature_hostspassword_hintwp_rest_search_handlerswp_editor_settings
相关方法
wp_resource_hintswp_restore_imagewp_get_password_hintwp_preload_resourceswp_reschedule_eventwp_set_link_cats
引入
4.7.0
弃用
-

wp_resource_hints:这是 WordPress 中的一个动作,它的作用是为页面添加资源提示。使用这个动作,开发者可以为页面中的资源(如图片、字体等)添加提示,以提高页面的加载速度。

过滤关系类型的资源提示的域和URL。

$urls = apply_filters( 'wp_resource_hints', $urls, $relation_type );

常见问题

FAQs
查看更多 >