function populerYazilar( $query ) {

if( !is_admin() && $query->is_main_query() && is_home() ) {
$query->set( 'meta_key', 'post_views_count' );
$query->set( 'orderby', 'meta_value_num' );
}

return $query;
}

add_filter( 'pre_get_posts', 'populerYazilar' );


Eğer ana sayfadaki son yazılar için yapmak istiyorsanız bu kodu functions.php ye ekleyin.