/ Published in: PHP
Expand |
Embed | Plain Text
// enable threaded comments function enable_threaded_comments(){ if (!is_admin()) { if (is_singular() AND comments_open() AND (get_option('thread_comments') == 1)) wp_enqueue_script('comment-reply'); } } add_action('get_header', 'enable_threaded_comments');
Comments
Subscribe to comments
You need to login to post a comment.

I'm assuming this is supposed to add the "Reply" button somewhere on the comments? I added the function and looked at one of my blog posts to see if that now shows up and it doesn't. Post with comments is here: http://tourkick.com/2011/tourkick-poll-muse-vs-move-video-styles/ Thanks.