enqueue_comment_hotkeys_js()
Enqueues comment shortcuts jQuery script.
No Hooks.
Returns
null. Nothing (null).
Usage
enqueue_comment_hotkeys_js();
Changelog
| Since 2.7.0 | Introduced. |
enqueue_comment_hotkeys_js() enqueue comment hotkeys js code WP 7.0
function enqueue_comment_hotkeys_js() {
if ( 'true' === get_user_option( 'comment_shortcuts' ) ) {
wp_enqueue_script( 'jquery-table-hotkeys' );
}
}