print_head_scripts

函数
print_head_scripts ( No parameters )
返回值
  • (array)
相关
  • wp_print_scripts()
定义位置
相关方法
wp_print_head_scriptsprint_embed_scriptsprint_footer_scriptswp_print_scriptswp_print_footer_scripts
引入
2.8.0
弃用
-

print_head_scripts: 这是WordPress的一个动作钩子,在调用wp_head函数时被触发。它是用来在WordPress页面的头部打印脚本或代码的。

将脚本队列打印在管理页面的HTML头部。

推迟为页脚排队的脚本。print_footer_scripts()在页脚中被调用以打印这些脚本。

function print_head_scripts() {
	global $concatenate_scripts;

	if ( ! did_action( 'wp_print_scripts' ) ) {
		/** This action is documented in wp-includes/functions.wp-scripts.php */
		do_action( 'wp_print_scripts' );
	}

	$wp_scripts = wp_scripts();

	script_concat_settings();
	$wp_scripts->do_concat = $concatenate_scripts;
	$wp_scripts->do_head_items();

	/**
	 * Filters whether to print the head scripts.
	 *
	 * @since 2.8.0
	 *
	 * @param bool $print Whether to print the head scripts. Default true.
	 */
	if ( apply_filters( 'print_head_scripts', true ) ) {
		_print_scripts();
	}

	$wp_scripts->reset();
	return $wp_scripts->done;
}

常见问题

FAQs
查看更多 >