I selected only 2 levels of comment for my wordpress site.
How can I display the number of comment of the first level ? (Depth-1)
Leave a Reply
You must be logged in to post a comment.
I selected only 2 levels of comment for my wordpress site.
How can I display the number of comment of the first level ? (Depth-1)
You must be logged in to post a comment.
In the wp_comments table, if
comment_parent
equals 0, it’s a first-level comment.Based on akTed‘s answer:
Usage same as here ⦠Returns the number of top level comments for a specific post (or the current one if no id is given)
Use the code from this answer and remove just one
!
:here is some full working code, based on previous answers.