Reputation: 685
I'm creating a web app using WordPress
I have implemented a plugin for custom posting which product related all are ok but the problem is view URL.
I have created a template for product details view, source URL like this below
$category = Vehicle Accessories;
www.example.com/product-view/?category= $category
And get category name & view details based on the category name.
Generate below link:
www.example.com/product-view/?category=Vehicle%20Accessories
I need to below example
www.example.com/product-view/Vehicle%20Accessories
How can I implement this?
Thanks
Upvotes: 0
Views: 83
Reputation: 3060
You can change the URL structure in Settings -> Permalinks.
https://codex.wordpress.org/Settings_Permalinks_Screen
Upvotes: 1