I tried to ask this question in the WordPress Devlopment network with no success, I’m trying to display specific category only in permalinks for pages.
Right now the permalinks structure (POST Type) for All pages and post
example.com/the-post-title/
this is work for all my categories of post and pages and i want this for all categories look like
but i want this category ‘downloads’ when i select on those pages its show look like
example.com/downloads/the-post-title/
anyone help me out how to do it with php code or something else for this specific categories.
i try some plugin and search on web but not found anythinf related
2
Answers
You can use https://www.tiny.cloud/docs/plugins/opensource/link/ this plugin for customizing your link.
You will want to define a custom rewrite rule, to capture requests to
/downloads/
and direct them correctly. To do so, useadd_rewite_rule()
to match the existing rewrite rule for posts and pages.Then use the
post_link
filter to change the post’s URL to include/downloads
/.Pseudo-code: