Sort comments by karma- wp comments rating plugin
-
I’m using the plugin comments rating (thumbs up – thumbs down) on my comments template. It stores “karma” in the db column “comment_karma” in comments table. I am looking for a way to sort wp_list_comments by higher karma to lowest.
Have tried something like
<?php wp_list_comments('callback=my_custom_callback&orderby=comment_karma&order=DESC') ?>
but it’s not working.
On the developer website he posted this snippet, but it’s not working for me.
if (function_exists(ckrating_get_comments)) { $post_id = $post->ID; $mycomments = ckrating_get_comments( "post_id=$post_id&status=approve& orderby=comment_karma&order=DESC"); } else $mycomments = null; wp_list_comments(array(), $mycomments);
thanks for your help!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Sort comments by karma- wp comments rating plugin’ is closed to new replies.