'post',
'posts_per_page' => 5,
'orderby' => 'post_views_count', // Order by post views count
'order' => 'DESC', // Descending order to get the most popular posts first
);
$query = new WP_Query($args);
// Loop through the popular posts
while ($query->have_posts()) : $query->the_post();
?>