hi Daniel,
Yes you can but it needs code customization. The file is inside theme folder-> inc-> structure->content-extension.php on line no 759 and 783 you will find the following code
add_action( 'attitude_after_loop_content', 'attitude_next_previous', 5 );
/**
* Shows the next or previous posts
*/
function attitude_next_previous() {
if( is_archive() || is_home() || is_search() ) {
/**
* Checking WP-PageNaviplugin exist
*/
if ( function_exists('wp_pagenavi' ) ) :
wp_pagenavi();
else:
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) :
?>
<ul class="default-wp-page clearfix">
<li class="previous"><?php next_posts_link( __( '« Previous', 'attitude' ) ); ?></li>
<li class="next"><?php previous_posts_link( __( 'Next »', 'attitude' ) ); ?></li>
</ul>
<?php
endif;
endif;
}
}
Replace Previous and Next as you want. We recommended you to create a child theme before making any changes on it. First unhook the function and then only customize the code. We have already replied how to unhook the functions too in forum.
Thank you!