You can change html code for next button.
Parameters
- html – ready to use html code for next button
Usage
<?php
function change_berocket_pagination_next ( $html ) {
//your code here
return $html;
}
add_filter( 'berocket_pagination_next', 'change_berocket_pagination_next' );
?>