How to customize 'children comments' in Wordpress?
Hey i am using a callback for wp_list_comments
. I took the Code from here -
5balloons.info/custom-html-for-comments-section-in-wordpress-theme/
Now children comments are out of main comment (means children comment's ol
list is out of the parent comment's li
.
Let's check an example -
ol class=list-of-comments
li class=parent-comment-1Anything/li
ol class=childrenli/li/ol
/ol
so how to change children comments ol
to ul
.
how to add a class to this.
how to move it inside parent-comment-1(1 is id of comment)
So overall how to customize children comment in wp ?