I'm using WordPress as a Content Management System.
I currently have a few different Custom Post Types: featured, species, answers, forums and glossary.
These are all bespoke and wouldn't work with the default Posts functionality.
However, I've also got three separate types of Post which require the same functionality but are displayed on three separate areas of the website: news, articles, blogs.
My question is this: should I just use categories to display these posts, or should I create Custom Post Types for them?.
At the moment I'm using categories, but it's causing a couple of issues:
- As default a
blog, anarticleor anewspost all have the same URL format:website.com/post_slug - I'd prefer it to be
website.com/news/post_slug,website.com/blog/post_slugetc.
...
- I'd like to be able to use a URL structure such as
website.com/blog/author/nameorwebsite.com/author/name/blogsto view only that author's blog-type posts.
Thanks in advance,