How would I count the number of times a comment meta field’s value is in a post’s entire comments?
How would I count (and display) the number of times a comment meta field’s value is a post’s entire comments? e.g. meta key … Read more
How would I count (and display) the number of times a comment meta field’s value is a post’s entire comments? e.g. meta key … Read more
I’m trying to replicate the option in WordPress’s settings page that says: [x] Break comments into pages with ((5)) top level comments per … Read more
It appears that looping through wp_comment_query() with the argument post_status set to publish also lists comments that are posted on password protected posts. … Read more
I have noticed that the default WP_Query object also contains all of a post’s comments. global $wp_query; print_r($wp_query->comments); // Prints an object containing … Read more
I’m trying to setup a custom WP_Comment_Query which is ordered by a meta key. (It might be worth mentioning that these comments are … Read more