How to make a list of companies’ information and display them to user, using custom post types and a custom taxonomy?

Custom post types and taxonomies are the appropriate method of doing this. It sounds like you’ve already identified the appropriate taxonomies and CPT:

  • A company post type
  • A company_type taxonomy

register_post_type and register_taxonomy can do this for you. Don’t forget to re-save permalinks if you use those functions or change their parameters.

After doing this, new sections will appear in the Admin sidemenu, as well as frontend listings, and theme templates.

Further Reading

Generators:

Leave a Comment