Can’t change permalink url after hitting ‘ok’ and ‘update’

I am trying to change some of the titles of my posts and their respective permalinks. After I edit the title and permalink and click ‘ok’, the permalink appears to have changed temporarily. However, when I click ‘update’, the permalink changes back to what it was originally.

Is there anything that may be preventing the change that I might have overlooked?

3 Answers
3

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.

Leave a Comment