Have you modified theme files?
yes, i changed file home.php
In <?php /********* Featured Section. *********/ ?>
<?php $loop = new WP_Query( array( 'posts_per_page' => 1,'post__in' => get_option( 'sticky_posts' ),'post__not_in' => $no_duplicates, 'ignore_sticky_posts' => 1 ) ); ?>
changed in
<?php $loop = new WP_Query( array( 'posts_per_page' => 1,'paged' => $paged,'post__in' => get_option( 'sticky_posts' ),'post__not_in' => $no_duplicates, 'ignore_sticky_posts' => 1 ) ); ?>
In <!-- Begin categories. -->
<?php $loop = new WP_Query( array( 'cat' => $category, 'posts_per_page' => 4, 'post__not_in' => $no_duplicates ) ); ?>
changed in
<?php $loop = new WP_Query( array( 'cat' => $category, 'posts_per_page' => 4, 'paged' => $paged,'post__not_in' => $no_duplicates ) ); ?>
Then I added <?php leaf_pagination(); ?>
before </article><!– .post-home –>
that’s all… did not help