Sorting Posts by Most Liked
-
I’ve found the code below to sort the posts by the most liked, but I don’t know where in my theme to put it. Using Jupiter theme.
<?php
$the_query = new WP_Query(array(
‘post_status’ =>’published’,
‘post_type’ =>’post’,
‘orderby’ => ‘meta_value_num’,
‘meta_key’ => ‘_liked’,
‘paged’ => (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1
));
?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Sorting Posts by Most Liked’ is closed to new replies.