Advertisement
NubeColectiva

Cómo Cambiar el Slug o URL de Paginación en WordPress

May 21st, 2024
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. // Función Cambiar el Slug o URL de Paginación en WordPress
  2. function mejorar_url_paginacion() {
  3.     global $wp_rewrite;    
  4.     $wp_rewrite->pagination_base = ''; // Aquí puedes personalizar la URL o slug
  5.     $wp_rewrite->flush_rules();
  6. }
  7. add_action('init', 'mejorar_url_paginacion', 1);
  8.  
Tags: php wordpress
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement