I am calling comment_reply_link()
in my custom callback function for wp_list_comment()
.
It isn’t working… at all.
<?php comment_reply_link( array( 'before' => '<li class="reply">', 'after' => '</li>' ) ); ?>
At this stage, I’m not using comment-reply.js
to move the comment form. I’m just slowing building up from scratch my theme (a learning exercise). I want to implement threaded comments and the first step is to make the reply link work.
Is that JavaScript actually required for the reply link to work?
Why is there no output from this function in my code?