I tried asking this question in the Wordpress Devlopment network without success, I tried showing only specific categories in the permalinks of the page.
Now permalink structure for all pages and posts (POST type)
example.com/the-post-title/
This works for all my post and page categories, I want all categories to look like this But I want this category "Downloads"
when I select it to display on these pagesexample.com/downloads/the-post-title/
Can anyone help me with how to use php code or something else for this specific category.
I tried some plugins and searched on the web but didn't find anything relevant
You can usehttps://www.tiny.cloud/docs/plugins /opensource/link/This plugin is used to customize your links.
You will need to define custom rewrite rules to capture requests for
/downloads/
and direct them correctly. To do this, useadd_rewite_rule()
to match existing rewrite rules for posts and pages.Then use
post_link
filterto change the URL of the post to include/downloads
/.pseudocode: