wp_script_is()

wp_script_is( string $handle, string $list = ‘enqueued’…

wp_script_is( string $handle, string $list = ‘enqueued’ )

确定是否已将脚本添加到队列中。
Determines whether a script has been added to the queue.

目录锚点:#说明#参数#源码#笔记


说明(Description)

有关此主题函数和类似主题函数的更多信息,请参阅主题开发人员手册中的条件标记文章。


参数(Parameters)

参数 类型 说明
$handle (string) 脚本的名称。
$list (string) 要检查的脚本的状态。接受’enqueued’、’registered’、’queue’、’tou-do’和’done’。

源码(Source)

/**
 * Check whether a script has been added to the queue.
 *
 * @since 2.8.0
 * @since 3.5.0 'enqueued' added as an alias of the 'queue' list.
 *
 * @param string $handle Name of the script.
 * @param string $list   Optional. Status of the script to check. Default 'enqueued'.
 *                       Accepts 'enqueued', 'registered', 'queue', 'to_do', and 'done'.
 * @return bool Whether the script script is queued.
 */
function wp_script_is( $handle, $list = 'enqueued' ) {
	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__ );

	return (bool) wp_scripts()->query( $handle, $list );
}
更新版本 源码位置 使用 被使用
3.5.0 wp-includes/functions.wp-scripts.php 2 9

笔记(Notes)

基本示例

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册