wp_print_scripts

函数
wp_print_scripts ( $handles = false )
参数
  • (string|bool|array) $handles Optional. Scripts to be printed. Default 'false'.
    Required:
    Default: false
返回值
  • (string[]) On success, an array of handles of processed WP_Dependencies items; otherwise, an empty array.
相关
  • WP_Scripts::do_item()
定义位置
相关方法
wp_print_script_tagwp_print_head_scriptswp_print_footer_scriptswp_playlist_scriptswp_scripts
引入
2.1.0
弃用
-

wp_print_scripts: 这个动作用来打印所有为页面排队的脚本。它用于确保所有必要的脚本都包含在页面中。

打印文档头部的$handles队列中的脚本。

由admin-header.php和{@see ‘wp_head’}挂钩调用。由于它在每次加载页面时都会被wp_head调用,因此除非明确传递脚本名称,否则该函数不会实例化WP_Scripts对象。如果存在的话,会使用已经实例化的$wp_scripts全局。使用提供的{@see ‘wp_print_scripts’}钩子来注册/获取新的脚本。

function wp_print_scripts( $handles = false ) {
	global $wp_scripts;

	/**
	 * Fires before scripts in the $handles queue are printed.
	 *
	 * @since 2.1.0
	 */
	do_action( 'wp_print_scripts' );

	if ( '' === $handles ) { // For 'wp_head'.
		$handles = false;
	}

	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );

	if ( ! ( $wp_scripts instanceof WP_Scripts ) ) {
		if ( ! $handles ) {
			return array(); // No need to instantiate if nothing is there.
		}
	}

	return wp_scripts()->do_items( $handles );
}

常见问题

FAQs
查看更多 >