¿Estás buscando una manera de añadir la selección de categorías a un tipo de entrada personalizado? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que se puede utilizar para agregar la selección de categorías al tipo de entrada personalizada en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
function reg_cat() { register_taxonomy_for_object_type('category','CUSTOM_POST_TYPE'); } add_action('init', 'reg_cat');
No olvides cambiar CUSTOM_POST_TYPE
por el nombre del tipo de entrada personalizado que has creado.
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si te ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 43 temas de WordPress simples para iniciar un sitio web y cómo crear un formulario de envío de post invitado en 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/