So I am working on a large media site using Wordpress. I want to create customised category pages, rather than using a blanket template throughout.
I am aware that I can copy the php files, rename them and customise those. But I have come across an easier way, especially in terms of allowing non-coding types to make changes. It just seems a little too easy...
So let's say my current permalinks/URLs read like this:
POSTS: domain.com/2016/10/postname.html
CATEGORIES: domain.com/c/category-name/
PAGES: domain.com/page-name/
I have discovered that I can create a page and give it the permalink /c/, thus it would look like this:
domain.com/c/
I have discovered that if I create a child page, using /c/ as the parent, it looks like this:
domain.com/c/page-name/
If I give this page the same SLUG as a category, and then click through to the page, the page overrides the category. To be more specific, let's say I have a category called videos, then I create a page under the /c/ parent page also called videos, this happens:
The PAGE at /c/videos/
overrides the CATEGORY at /c/videos.
It just seems too good to be true? Can anyone see any reason why I wouldn't proceed like this, especially when the site is going to be used by non-coding types in the future who'd like to be able to make easy changes using the dashboard as opposed to the backend?
Thanks in advance.