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