Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Función Cambiar el Slug o URL de Paginación en WordPress
- function mejorar_url_paginacion() {
- global $wp_rewrite;
- $wp_rewrite->pagination_base = ''; // Aquí puedes personalizar la URL o slug
- $wp_rewrite->flush_rules();
- }
- add_action('init', 'mejorar_url_paginacion', 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement