wpseek.com
WordPress开发者和主题制作者的搜索引擎



enqueue_comment_hotkeys_js › WordPress Function

Since2.7.0
已弃用n/a
enqueue_comment_hotkeys_js ( 没有参数 )
定义在:
文档:

Enqueues comment shortcuts jQuery script.



源码

function enqueue_comment_hotkeys_js() {
	if ( 'true' === get_user_option( 'comment_shortcuts' ) ) {
		wp_enqueue_script( 'jquery-table-hotkeys' );
	}
}