14 visitas
Hola,
Puedes usar el siguiente código en el tema Child functions.php
archivo o en un complemento de fragmento de código.
function remove_thousand_separator_pagination($output) {
$output = str_replace(',', '', $output);
return $output;
}add_filter('paginate_links', 'remove_thousand_separator_pagination');
¡Pruébalo y cuéntame cómo te va!