Wordpress - WordPress Query and Database
Why might this pagination code fail to show correct pages?
$paged = get_query_var('paged') ?: 1;
$args = ['posts_per_page' => 5];
$query = new WP_Query($args);