Sort WordPress post by Likes (ZillaLikes)

I am implementing this plugin ZillaLikes http://www.themezilla.com/plugins/zillalikes/ which is great plugin allows people to ‘love’ my posts. I want to be able to now sort by those that are liked.

I have read through the documentation of sorting wordpress posts which is fine but cant work out how to do it with the associated likes?

Related posts

Leave a Reply

1 comment

  1. Haven’t tested this. But it should be possible to order by meta_key _zilla_likes

    new WP_Query( array( 
      'meta_key' => '_zilla_likes',
      'orderby' => 'meta_value_num'
    ));