#16733 closed defect (bug) (fixed)
[16918] Broke PATHINFO custom taxomony permalinks
Reported by: | markjaquith | Owned by: | |
---|---|---|---|
Milestone: | 3.1.1 | Priority: | high |
Severity: | major | Version: | 3.1 |
Component: | Rewrite Rules | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
Change History (10)
#5
in reply to:
↑ 2
@
14 years ago
Replying to duck_:
Looks like patch on #16662 fixes this (along with revert of [16918])
Obviously I'm completely failing to notice that this is only papering over the issue that with_front false doesn't work with PATHINFO permalinks (the same is true of custom post types registered with with_front => false).
/me hopes I don't quadruple post
#6
@
14 years ago
My research has yielded these results. There's more to it. Regular category permalinks were broken too.
Structure = /archives/%postname%
3.0.5
- http://wp.dev/archives/people/mark-jaquith (works)
- http://wp.dev/archives/category/uncategorized (works)
3.1
- http://wp.dev/archives/people/mark-jaquith (works)
- http://wp.dev/archives/category/uncategorized (404)
- http://wp.dev/category/uncategorized (works, but it is a different URL!)
Structure = /index.php/archives/%postname%
3.0.5
- http://wp.dev/index.php/archives/people/mark-jaquith (works)
- http://wp.dev/index.php/archives/category/uncategorized (works)
3.1
- http://wp.dev/index.php/archives/people/mark-jaquith (404)
- http://wp.dev/index.php/archives/category/uncategorized (404)
- http://wp.dev/index.php/category/uncategorized (works, but it is a different URL!)
Structure = /%year%/%monthnum%/%postname%
3.0.5
3.1
Structure /index.php/%year%/%monthnum%/%postname%
3.0.5
- http://wp.dev/index.php/people/mark-jaquith (works)
- http://wp.dev/index.php/category/uncategorized (works)
3.1
- http://wp.dev/index.php/people/mark-jaquith (404)
- http://wp.dev/index.php/index.php/people/mark-jaquith (works, but it is a different URL!)
- http://wp.dev/index.php/category/uncategorized (works)
#7
follow-up:
↓ 8
@
14 years ago
My research has yielded these results. There's more to it. Regular category permalinks were broken too.
Different Changeset there.. That'll be [15825], Setting with_front => true in the category tax registration should fix that
#8
in reply to:
↑ 7
@
14 years ago
Replying to dd32:
My research has yielded these results. There's more to it. Regular category permalinks were broken too.
Different Changeset there.. That'll be [15825], Setting with_front => true in the category tax registration should fix that
Yes, with_front solves it. I've already attached a patch on ticket:16662:16662.3.diff
Looks like patch on #16662 fixes this (along with revert of [16918])