admin管理员组

文章数量:1130349

I have created a custom post type called groups which is now available in the dashboard of the admin console on WordPress. I now want to be able to add multiple groups to posts. Similar to how one can add tags to posts. I would really appreciate some solutions to how I can go about doing so. thank you in advance.

I have created a custom post type called groups which is now available in the dashboard of the admin console on WordPress. I now want to be able to add multiple groups to posts. Similar to how one can add tags to posts. I would really appreciate some solutions to how I can go about doing so. thank you in advance.

Share Improve this question asked Nov 13, 2018 at 9:04 Sanjana NanjappaSanjana Nanjappa 135 bronze badges 3
  • You should use taxonomy to associate posts. CPTS was not designed to be used this way. Or create custom tables. – sandrodz Commented Nov 13, 2018 at 9:09
  • I want to able to add these groups to the posts. Is that not possible? – Sanjana Nanjappa Commented Nov 13, 2018 at 10:34
  • Anything is possible since WordPress is just php and mysql database. But the question is, do you have enough knowledge and time to undertake things that are this far from standard way of doing things? Why not just use taxonomy, since this is what you will be using your groups for anyways. – sandrodz Commented Nov 13, 2018 at 14:22
Add a comment  | 

1 Answer 1

Reset to default 0

Here is a plugin which does exactly what I asked for and it is very simple to use. https://github/scribu/wp-posts-to-posts

I have created a custom post type called groups which is now available in the dashboard of the admin console on WordPress. I now want to be able to add multiple groups to posts. Similar to how one can add tags to posts. I would really appreciate some solutions to how I can go about doing so. thank you in advance.

I have created a custom post type called groups which is now available in the dashboard of the admin console on WordPress. I now want to be able to add multiple groups to posts. Similar to how one can add tags to posts. I would really appreciate some solutions to how I can go about doing so. thank you in advance.

Share Improve this question asked Nov 13, 2018 at 9:04 Sanjana NanjappaSanjana Nanjappa 135 bronze badges 3
  • You should use taxonomy to associate posts. CPTS was not designed to be used this way. Or create custom tables. – sandrodz Commented Nov 13, 2018 at 9:09
  • I want to able to add these groups to the posts. Is that not possible? – Sanjana Nanjappa Commented Nov 13, 2018 at 10:34
  • Anything is possible since WordPress is just php and mysql database. But the question is, do you have enough knowledge and time to undertake things that are this far from standard way of doing things? Why not just use taxonomy, since this is what you will be using your groups for anyways. – sandrodz Commented Nov 13, 2018 at 14:22
Add a comment  | 

1 Answer 1

Reset to default 0

Here is a plugin which does exactly what I asked for and it is very simple to use. https://github/scribu/wp-posts-to-posts

本文标签: custom post type to post association in wordpress