Skip to content

Instantly share code, notes, and snippets.

@webhasan
Created February 12, 2014 08:23
Show Gist options
  • Save webhasan/8951801 to your computer and use it in GitHub Desktop.
Save webhasan/8951801 to your computer and use it in GitHub Desktop.
wp: Ajax comment reply
function theme_queue_js(){
if ( (!is_admin()) && is_singular() && comments_open() && get_option('thread_comments') )
wp_enqueue_script( 'comment-reply' );
}
add_action('wp_print_scripts', 'theme_queue_js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment