$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>custom post type to post association in wordpress|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

custom post type to post association in wordpress

matteradmin6PV0评论

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

Post a comment

comment list (0)

  1. No comments so far