Skip to content

Instantly share code, notes, and snippets.

@chipbennett
Created November 2, 2011 21:13
Show Gist options
  • Save chipbennett/1334941 to your computer and use it in GitHub Desktop.
Save chipbennett/1334941 to your computer and use it in GitHub Desktop.
WCTOR.enqueue.2
<?php
function oenology_enqueue_comment_reply() {
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'oenology_enqueue_comment_reply' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment