Home / Top Rated

Top Rated

4, /* get 4 posts, or set -1 to display all posts */
‘orderby’ => ‘meta_value’, /* this will look at the meta_key you set below */
‘meta_key’ => ‘post_views_count’,
‘order’ => ‘DESC’,
‘post_type’ => ‘post’,
‘post_status’ => ‘publish’
);
$myposts = get_posts( $args );
foreach ( $myposts as $mypost ) {
/* do things here */
}
?>

Full Video
Scroll To Top