• How do I ‘permanently’ remove old page and post slugs.

    The current slugs are redirecting to ‘old’ slugs.

    Is there a simple way, or plugin that will do this?

Viewing 1 replies (of 1 total)
  • Those ‘old’ slugs are kept in the postmeta table. Using phpMyadmin you could delete them ALL with:

    DELETE FROM wp_postmeta WHERE meta_key = '_wp_old_slug';

    Or delete them individually in that table.

    Backup your database before attempting.

Viewing 1 replies (of 1 total)
  • The topic ‘How to permanently remove 'old' page and post slugs’ is closed to new replies.