Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joshfitzgerald/5946261 to your computer and use it in GitHub Desktop.
Save joshfitzgerald/5946261 to your computer and use it in GitHub Desktop.
<?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