Title: Company Groups
Last modified: August 30, 2016

---

# Company Groups

 *  Resolved [Dave3o3](https://wordpress.org/support/users/dave3o3/)
 * (@dave3o3)
 * [11 years ago](https://wordpress.org/support/topic/company-groups/)
 * Hi,
 * first of all i’d like to thank you for your excellent work! Your plugin is exactly
   what i was looking for. We run a small company in Germany and want to switch 
   from a static wiki to a dynamic CMS. So thanks again for this helpful tool!
 * My question:
 * We are supporting large business groups with several associated companies. We
   call these groups “Clients” and the companies “CBUs” (Client Business Units).
   
   Is there a possibility to create an additional menu for “Client”, “Customer” 
   or “Company Group”?
 * p.e.:
    Client/Group: _Apple_ > Company: _Itunes S.A.R.L._ (of course they should
   be linked to each other)
 * [https://wordpress.org/plugins/orbis/](https://wordpress.org/plugins/orbis/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Remco Tolsma](https://wordpress.org/support/users/remcotolsma/)
 * (@remcotolsma)
 * [11 years ago](https://wordpress.org/support/topic/company-groups/#post-6381541)
 * If you are a WordPress developer this is ofcourse possible. We however don’t 
   have plans to add this extra dimension. You could however use the company categories
   to group companies. If you really need an extra custom post type for the “Clients”
   you could develop an custom WordPress plugin wich register an custom post type‘
   Company Group’.
 * [https://codex.wordpress.org/Function_Reference/register_post_type](https://codex.wordpress.org/Function_Reference/register_post_type)
   
   [https://github.com/scribu/wp-posts-to-posts/wiki/Basic-usage](https://github.com/scribu/wp-posts-to-posts/wiki/Basic-usage)
 * A simple start:
 *     ```
       <?php
   
       function orbis_company_groups_init() {
       	register_post_type( 'orbis_company_group', array(
       		'public' => true,
       		'label'  => __( 'Company Groups', 'orbis_company_groups' ),
       	) );
       }
   
       add_action( 'init', 'orbis_company_groups_init' );
   
       function orbis_company_groups_p2p_init() {
           p2p_register_connection_type( array(
               'name' => 'orbis_companies_to_groups',
               'from' => 'orbis_company',
               'to'   => 'orbis_company_group',
           ) );
       }
   
       add_action( 'p2p_init', 'orbis_company_groups_p2p_init' );
       ```
   
 * We are currently to busy to help you further with this, but an WordPres developer
   could help you with this. Good luck!

Viewing 1 replies (of 1 total)

The topic ‘Company Groups’ is closed to new replies.

 * ![](https://ps.w.org/orbis/assets/icon.svg?rev=1022915)
 * [Orbis](https://wordpress.org/plugins/orbis/)
 * [Support Threads](https://wordpress.org/support/plugin/orbis/)
 * [Active Topics](https://wordpress.org/support/plugin/orbis/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/orbis/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/orbis/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Remco Tolsma](https://wordpress.org/support/users/remcotolsma/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/company-groups/#post-6381541)
 * Status: resolved