Ticket #5034 (new feature request)

Opened 4 years ago

Last modified 4 months ago

Impossible to have duplicate category slugs with different parents

Reported by: snakefoot Owned by: ryan
Priority: high Milestone: Future Release
Component: Taxonomy Version: 2.3
Severity: normal Keywords: category tag permalink slug taxonomy unique needs-refresh
Cc: janbrasna, Denis-de-Bernardy, kevinB, aesqe@…, wycks

Description

I'm using Wordpress as a CMS tool where categories are used as macro level grouping.

Windows XP -> Utilities Windows Vista -> Utilities

This is no longer possible with WP 2.3, which ignores parent category when testing whether a slug is unique.

Change History

comment:1 in reply to: ↑ description   snakefoot4 years ago

Guess it is also impossible to have duplicate slugs with different taxonomy. Forexample I have a link category called "news" and I also have a post-category called "news".

But I can see that this is no longer possible with the new database design, and removing these new limitations would require a redesign of the database. And I guess this not something which is going to happen in the 2.3 branch.

Glad that WP 2.0 is kept alive for several more years :)

Whoops two different taxonomy can point to the same slug, so the situation with link-category and post-category is not an issue.

Would it be possible to change the term_taxonomy table so the unique key is "term_id + taxonomy + parent" ? (Instead of "term-id + taxonomy")

Then would be a matter of correcting the upgrade function, so it would create multiple entries in the term_taxonomy table if several category is has similar name but different parents.

  • Owner changed from anonymous to ryan
  • Priority changed from normal to high

Pinging Ryan

Just peeked at some of the category code, and it seems there is some kind of conversion from the taxonomy + terms table to the old category format.

Sadly enough it expects a one to one relationship between the taxonomy and terms table, and gets angry when two different taxonomy entries points to the same term (Just tried to change the unique index to see what happened). It seems to use the id of the term to identify the category, where it probably should use the id from the taxonomy table.

comment:6   ryan4 years ago

In retrospect, we probably should have gone with passing term_taxonomy_id instead of term_id + taxonomy around the API and adding parent to the term_taxonomy keying. But, term_id + taxonomy is what we have. I think we'll have to make new term_ids with unique slugs to work around this.

Guess one should be able to change the inner workings of the API, so terms are identified using the taxonomy-id instead. Post-categories, link-categories and tags would use taxonomy-id as their id.

This wouldn't break API's (one can always get a unique term using the taxonomy-id). Though it would change id's for all taxonomy-types (like ids changes with WP 2.3), and plugins will require a new API to aquire the actual term-id.

But it will pretty much require a complete rewrite of all taxonomy code :)

Guess I'm stuck with WP 2.0

Btw. WP already makes new slugs when upgrading (avoids duplicate slugs by appending a counter), but not very elegant though will probably be acceptable for most.

comment:9   ryan4 years ago

(In [6157]) Term with slug that conflicts with existing term with different parent gets a new term entry with a unique slug. see #5034

Should I create a new ticket for 2.4 so this one can get closed ?

  • Milestone changed from 2.3 to 2.4
  • Milestone changed from 2.5 to 2.6
  • Cc janbrasna added
  • Keywords category tag permalink slug taxonomy unique added; tags removed
  • Component changed from General to Taxonomy

Related: #3799 + #3683 + #6211 + #6542

  • Cc Denis-de-Bernardy added

comment:17 follow-up: ↓ 18   janeforshort2 years ago

  • Milestone changed from 2.9 to Future Release

Punting for time and lack of recent activity.

comment:18 in reply to: ↑ 17   arena2 years ago

Replying to janeforshort:

Punting for time and lack of recent activity.

Should be closed for me as not a bug => wontfix

  • Cc kevinB added
  • Cc aesqe@… added
  • Cc wycks added
  • Keywords needs-refresh added
  • Type changed from defect (bug) to feature request

Related: #6211

This is ancient but could really use addressing especially for sites that are multilingual, it kills the permalink structure and causes issues with all the multi-language plugins.

For example words in several languages can be the same ( eg:restaurant) so in a multilingual structure WordPress treats them as duplicates.

/test/restaurant/example ... English version

/test/fr/restaurant/example ... French version is not currently possible in WP!

/test/fr/restaurant-1/example ... Works but is ugly

Last edited 4 months ago by wycks (previous) (diff)
Note: See TracTickets for help on using tickets.