「ok」と「update」を押した後、パーマリンクの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. :-)
投稿のタイトルとそれぞれのパーマリンクの一部を変更しようとしています.タイトルとパーマリンクを編集して「OK」をクリックすると、パーマリンクが一時的に変更されたように見えます.ただし、[更新]をクリックすると、パーマリンクが元の状態に戻ります.
見落としていたかもしれない変更を妨げている可能性のあるものはありますか?