You should always register custom taxonomies and post types to each other as early as possible. Wrap your registration process in a function, hooked to the init
hook at the default priority.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
register_taxonomy( 'some_custom_tax', 'some_post_type', $array_of_arguments ); register_post_type( 'some_post_type', [ 'taxonomies' => [ 'some_custom_tax' ], // other arguments ] ); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.