No se puede cambiar la URL del enlace permanente después de presionar "ok" y "actualizar"
3 respuestas
- votos
-
- 2012-01-03
¿De algunamanera ha ocultado/eliminadoelmetabox de lababosa?(¿Hay algo comoestoen sufunctions.php?)
function remove_post_meta_box() { remove_meta_box('slugdiv', 'post', 'normal'); } add_action('admin_menu', 'remove_post_meta_box');
Sieseesel caso,está causandoelerror. Yaexiste un Trac ticketparaesto,pero la únicaforma de resolverlo actualmenteeseliminarlo.
Have you somehow hidden/removed the slug metabox? (is something like this located in your functions.php?)
function remove_post_meta_box() { remove_meta_box('slugdiv', 'post', 'normal'); } add_action('admin_menu', 'remove_post_meta_box');
If that's the case, it's causing the error. There is a Trac ticket for this already, but the only way to currently solve it is to remove it.
-
- 2012-01-03
Cambiéeltítulo de unapágina queera "principal" a algunas otraspáginas,como dices,elenlacepermanente seguía volviendo altítulo de lapágina original.Me las arreglépara actualizarelmío yendo a las listas depáginas,seleccionando "edición rápida" demi páginaprincipal (en lugar de la opción "editar"),luego cambiéel "slug" ami nuevotítulo;presione actualizarparaguardar.Estoguardó correctamenteelnombre delenlacepermanenteparami páginaprincipal ytodas laspáginas queeran secundarias.Espero quetenga sentido.
I changed the title of a page which was a "parent" to a few other pages - as you say the permalink kept going back to the original page title. I managed to update mine by going to the page listings, selecting "quick edit" of my parent page (rather than the "edit" option), then changed the "slug" to my new title - press update to save. This correctly saved the permalink name for my parent page and all the pages which were children. Hope that makes sense.
-
- 2016-02-03
Tuveelmismoproblema alnopoder cambiarelenlacepermanente,en mi caso:
http://mysite/action-2
.Lo que sea que hice alintentar cambiaresto ahttp://mysite/action
,nadafuncionó.Noteníapáginasni publicacionesen lapapelera,por lo queesonoestaba causandoelproblema.Tenía que haber unapágina ocupandoelenlacepermanente,así que simplementeescribí:http://mysite/action
y ahíestaba,unapágina que contenía unaimagen,pero simplementeno habíaningunapágina dentro de Wordpress.conesaimagen,así que revisé labiblioteca demedios yencontré laimagen que sepresentóenhttp://mysite/action
.Comono uséesaimagen,laeliminé de labiblioteca yborréel caché.cuando reviséelenlacepermanenteen lapágina,¡vi queelenlacepermanente había cambiado automáticamenteen eltítulo de lapágina!Problema resuelto.:-)I had the same issue not being able to change the permalink, in my case:
http://mysite/action-2
. Whatever I did trying to change this tohttp://mysite/action
, nothing worked. I had no pages or posts in trash so that was not causing the problem. There had to be a page occupying the permalink so i just typed in:http://mysite/action
and there it was, a page containing an image, but there just wasn't any page within Wordpress with that image so I checked the media library and found the image that was presented onhttp://mysite/action
. Since I didn't use that image I deleted it from the library and cleared the cache. when I checked the permalink on the page, I saw the permalink automatically had changed in the page title! Problem solved. :-)
Estoyintentando cambiar algunos de lostítulos demispublicaciones y sus respectivosenlacespermanentes.Después deeditareltítulo yelenlacepermanente y hacer clicen "Aceptar",elenlacepermanenteparece haber cambiadotemporalmente.Sinembargo,cuando hago clicen "actualizar",elenlacepermanente cambia a lo queera originalmente.
¿Hay algo quepuedaestarimpidiendoel cambio quepodría haberpasadopor alto?