bu hata temadan kaynaklanıyor . Tema dağıtıcısı/üreticisi kim ise tema fonksiyonunda bunu güncellemeli
detaylı bilgi https://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters


eğer bekleyemem diyorsanız temaya ait functions.php i açıp aşağıdaki kod satırlarını kopyalayıp yapıştırın ve tekrar kontrol edin

add_action('pre_get_posts', 'ci_paging_request');
function ci_paging_request($wp)
{

if(is_admin()) return;

$num = get_option('posts_per_page', 15);

if( is_home() )
$num = 5;

if( is_archive() )
$num = 25;

if( is_category() or is_tag() )
$num = 10;

if( is_category('exotic-flowers') )
$num = -1; // -1 means No limit

if( ! isset( $wp->query_vars['posts_per_page'] ) and is_main_query() )
{
$wp->query_vars['posts_per_page'] = $num;
}
}