Bu kodu bir dener misiniz? Bunu sayfalamanın gözükeceği php dosyasına eklemeniz gerekmektedir.

// Protect against arbitrary paged values
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1;

$args = array(
'post_type' => 'post',
'post_status'=>'publish',
'posts_per_page' => 10,
'paged' => $paged,
);

$the_query = new WP_Query($args);
?>

have_posts() ) : ?>

have_posts() ) : $the_query->the_post();
// Post content goes here...
endwhile; ?>






.pagination .page-numbers {
background: #db605d;
color: #fff;
display: block;
width: auto;
float: left;
margin: 4px 4px 4px 0;
padding: 15px 18px 14px 18px;
text-decoration: none;
}

.pagination .page-numbers:hover {
background: #24221D;
color: #fff;
text-decoration: none;
}

.pagination .current {
background: #24221D;
color: #fff;
padding: 15px 18px 14px 18px;
}