Você está procurando uma maneira de adicionar a seleção de categoria ao tipo de postagem personalizada? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para adicionar a seleção de categoria ao tipo de postagem personalizada no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plugin específico do site:
function reg_cat() { register_taxonomy_for_object_type('category','CUSTOM_POST_TYPE'); } add_action('init', 'reg_cat');
Não se esqueça de alterar o CUSTOM_POST_TYPE
para o nome do tipo de post personalizado que você criou.
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress para não danificar acidentalmente seu site.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 43 temas simples do WordPress para iniciar um site e como criar um formulário de envio de guest post no WordPress.
Extremely helpful. Thanks
Doesn’t work
Hi Nat,
Be sure to change the
CUSTOM_POST_TYPE
to the name of the custom post type that you made.It would be cool if you talked about how and why you implemented this approach. As a developer, I like to understand the ‘why’ behind the solution.
The register_taxonomy_for_object_type() function is used because it adds taxonomies to post types.
Does this work for custom post types and custom taxonomies? For the default taxonomy with custom post type, it is working, but not for custom taxonomy.
Yes,
register_taxonomy_for_object_type()
should work for any registered taxonomy. If it doesn’t work, you may want to check if the taxonomy has been registered properly.Hey there, Thanks for this info. I would like to add categories to my woocommerce products to further structure data and pull products into some category based widgets (i realise products have a “product category” already) Can you tell me what the code should read for Woocommerce custom post product types. I am unsure how to find this out.
Extremely helpful (in my hour of need!)
Thanks so much for sharing 🙂
Thanks
Nice approach, but i do think instead of writing this somewhat “much” code, the theme developer should just add this line below into the register_post_type function.
‘taxonomies’ => array(‘category’)
Hi Adedoyin
Yes this is very true, this is just another method to add taxonomies however I have used this method to limit access to taxonomies editing based on role.
La bamba!
Cool glad you like the snippet, also check out add tag selection.
http://wpsnipp.com/index.php/functions-php/add-tag-selection-to-custom-post-type/