Skip to content

Instantly share code, notes, and snippets.

@melissacabral
Last active December 14, 2015 13:19
Show Gist options
  • Save melissacabral/5093077 to your computer and use it in GitHub Desktop.
Save melissacabral/5093077 to your computer and use it in GitHub Desktop.
Improves UX when replying to threaded comments. use in functions.php
<?php
function awesome_comment_reply(){
if( !is_admin() &amp;&amp; is_singular() &amp;&amp; comments_open() &amp;&amp; get_option('thread_comments') ):
wp_enqueue_script( 'comment-reply' );
endif;
}
add_action( 'wp_print_scripts', 'awesome_comment_reply' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment