Administration: Sanitize category and tag base to prevent URL encoding issues in permalinks#9797
Administration: Sanitize category and tag base to prevent URL encoding issues in permalinks#9797himanshupathak95 wants to merge 9 commits intoWordPress:trunkfrom
Conversation
Test using WordPress PlaygroundThe changes in this pull request can previewed and tested using a WordPress Playground instance. WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser. Some things to be aware of
For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation. |
23b3e61 to
c11b5c3
Compare
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the Core Committers: Use this line as a base for the props when committing in SVN: To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
…g issues in permalinks.
e85e408 to
71ed414
Compare
Trac ticket: https://core.trac.wordpress.org/ticket/16839
This PR fixes category and tag base sanitization in permalink settings to prevent 404 errors when bases contain spaces or special characters.
When users set a category base with spaces (e.g., "Foo Bar"), WordPress generates URLs like
example.com/Foo%20Bar/category, which results in 404 errors because rewrite rules expectexample.com/foo-bar/category.This PR -
sanitize_title_with_dashes()