¿Quieres personalizar la URL de búsqueda de WordPress de tu sitio? Puedes crear dinámicamente una URL personalizada basada en el término de búsqueda que tus visitantes escriban en la barra de búsqueda.
Con el siguiente fragmento, así es como se verá su URL de búsqueda:
http://example.com/search/searchterm
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
function search_url_rewrite_rule() { if ( is_search() && !empty($_GET['s'])) { wp_redirect(home_url("/search/") . urlencode(get_query_var('s'))); exit(); } } add_action('template_redirect', 'search_url_rewrite_rule');
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, no dudes en echar un vistazo a cómo conectar Google Analytics a tu sitio, para que puedas realizar un seguimiento de tu búsqueda in situ con facilidad.
Thanks for the snipp, but there is a problem when you try to search words with accents (á, é, í, ó, ú) or others letters (ñ, ç, …)
You have to decode the search term in the query_vars and in the search_query. Here is my code
function you_search_filter($s) {
return urldecode($s);
}
add_filter(‘get_search_query’, ‘you_search_filter’);
add_filter(‘the_search_query’, ‘you_search_filter’);
add_action(‘parse_query’, ‘you_query_vars_search_filter’ );
function you_query_vars_search_filter( $qvars ) {
$qvars->query_vars[‘s’] = urldecode($qvars->query_vars[‘s’]);
return $qvars;
}
Hope it could be useful
Is there some SEO advantage by using this instead of the default URL?
Nice function BTW, i’ll use it.
To be honest I don’t think it is that big of a help to SEO however if you have pretty links enabled this continues this look rather then ?s= .