'확인'및 '업데이트'를 누른 후 영구 링크 URL을 변경할 수 없습니다.
3 대답
- 투표
-
- 2012-01-03
슬러그 메타 박스를 숨기거나 제거 했습니까?(이와 같은 것이functions.php에 있습니까?)
function remove_post_meta_box() { remove_meta_box('slugdiv', 'post', 'normal'); } add_action('admin_menu', 'remove_post_meta_box');
이 경우 오류가 발생한 것입니다. 이 문제에 대한 Trac 티켓이 이미 있지만 현재 해결하는 유일한 방법은제거하십시오.
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
'상위'페이지의 제목을 몇 개의 다른 페이지로 변경했습니다. 영구 링크가 계속 원래 페이지 제목으로 돌아 간다고 말씀 하셨기 때문입니다.페이지 목록으로 이동하여 부모 페이지의 "빠른 편집"( "편집"옵션이 아닌)을 선택한 다음 "슬러그"를 새 제목으로 변경했습니다. 업데이트를 눌러 저장했습니다.이것은 내 상위 페이지와 모든 하위 페이지의 영구 링크 이름을 올바르게 저장했습니다.이해가 되길 바랍니다.
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
내 경우에는
http://mysite/action-2
와 같이 영구 링크를 변경할 수없는 동일한 문제가 발생했습니다.이것을http://mysite/action
으로 변경하려고했지만 아무것도 작동하지 않았습니다.휴지통에 페이지 나 게시물이 없어서 문제가 발생하지 않았습니다.퍼머 링크를 차지하는 페이지가 있어야 했으므로 방금 입력 :http://mysite/action
그리고 거기에 이미지가 포함 된 페이지가 있었지만 Wordpress 내에 페이지가 없었습니다.그 이미지로 미디어 라이브러리를 확인하고http://mysite/action
에 표시된 이미지를 찾았습니다.해당 이미지를 사용하지 않았으므로 라이브러리에서 삭제하고 캐시를 지 웠습니다.페이지의 퍼머 링크를 확인했을 때 페이지 제목에서 퍼머 링크가 자동으로 변경된 것을 보았습니다!문제 해결됨.:-)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. :-)
내 게시물의 일부 제목과 해당 영구 링크를 변경하려고합니다.제목과 영구 링크를 수정하고 '확인'을 클릭하면 영구 링크가 일시적으로 변경된 것 같습니다.하지만 '업데이트'를 클릭하면 고유 링크가 원래 상태로 돌아갑니다.
내가 간과했을 수있는 변화를 방해하는 요소가 있습니까?