Correct me if I’m wrong but I believe I got it. Locate the lines of codes below and delete the ones in bold. Replace “get_next_posts_link” with “wp_pagenavi”
<?php if ( get_next_posts_link() ) : ?>
<li class=”older-posts”><?php next_posts_link( ‘← ‘ . __( ‘Older posts’, ‘albinomouse’ )); ?>
<?php endif; ?>
<?php if ( get_previous_posts_link() ) : ?>
<li class=”newer-posts”><?php previous_posts_link( __( ‘Newer posts’, ‘albinomouse’) . ‘ →</span>’ ); ?>
<?php endif; ?>