Select Page

You can change any text on pagination.

Parameters

  1. args – array with settings for pagination, have standart woocommerce pagination settings
    • prev_next – use or not previous and next buttons
    • end_size – count of page from first page and from last page
    • mid_size – count of page from each side from current page
    • prev_text – text on previous button
    • next_text – text on next button
    • dots_prev_text – text on dots button before current button
    • dots_next_text – text on dots button after current button
    • first_page – text on first page button
    • last_page – text on last page button
    • current_page – text on current page button
    • page – text on other buttons

Usage

<?php
function change_berocket_pagination_styler_page_data ( $args ) {
//your code here
    return $args;
}

add_filter( 'berocket_pagination_styler_page_data', 'change_berocket_pagination_styler_page_data' );
?>