Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
Copa WPB
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Cómo crear taxonomías personalizadas en WordPress

Organizar el contenido de tu WordPress es fácil con categorías y etiquetas. Pero a veces, no son suficientes para organizarlo todo como quieres. Ahí es donde entran en juego las taxonomías personalizadas.

Con las taxonomías personalizadas, puedes crear tus propias formas de clasificar y agrupar el contenido. Esto te da más control y flexibilidad sobre cómo se clasifican tus entradas, productos o cualquier otro contenido.

En esta guía, le explicaremos cómo crear taxonomías personalizadas en WordPress, tanto si utiliza un plugin como si prefiere hacerlo manualmente.

How to create custom taxonomies in WordPress

¿Qué es una taxonomía de WordPress?

Una taxonomía de WordPress es una forma de organizar grupos de entradas y tipos de contenido personalizados.

Por defecto, WordPress viene con 2 taxonomías llamadas categorías y etiquetas. Puede utilizarlas para organizar las entradas de su blog.

Sin embargo, si utiliza un tipo de contenido personalizado, es posible que las categorías y etiquetas no se adapten a todo el contenido.

Por ejemplo, puede crear un tipo de contenido personalizado llamado ‘Libros’ y ordenarlo utilizando una taxonomía personalizada llamada ‘Temas’. A continuación, puede añadir términos de debate como “Aventura”, “Romance”, “Terror” y otros temas de libros que desee.

Esto le permitiría a usted y a sus lectores clasificar y filtrar fácilmente los libros por cada debate.

Las taxonomías también pueden ser jerárquicas, es decir, pueden tener temas principales o padres como “Ficción” y “No ficción”. Luego, habría subtemas, o hijos, dentro de cada categoría.

Por ejemplo, la categoría principal “Ficción” podría tener como hijos “Aventura”, “Romance” y “Terror”.

Ahora que ya sabe lo que es una taxonomía personalizada, aprendamos a crear taxonomías personalizadas en WordPress.

Aunque la creación de taxonomías personalizadas es potente, hay mucho que cubrir. Para ayudarle a establecer esto correctamente, hemos creado una fácil tabla de contenidos a continuación:

¿Preparados? ¡Primeros pasos!

Creación de taxonomías personalizadas con un plugin (de forma sencilla)

Lo primero que tienes que hacer es instalar y activar el plugin Custom Post Type UI. Para más detalles, consulta nuestra guía sobre cómo instalar un plugin de WordPress.

En este tutorial, ya hemos creado un tipo de contenido personalizado y lo hemos llamado ‘Libros’. Así que asegúrese de que tiene un tipo de contenido personalizado creado antes de empezar a crear sus taxonomías.

A continuación, vamos a dirigirnos a CPT UI ” Añadir/Editar Taxonomías en el área de administrador / administración de WordPress para crear su primera taxonomía.

Creating custom taxonomy using plugin

En esta pantalla, tendrá que hacer lo siguiente:

  • Cree su slug de taxonomía (esto irá en su URL)
  • Crear la etiqueta plural
  • Crear la etiqueta singular
  • Autocompletar etiquetas

El primer paso es crear un slug para la taxonomía que se utilizará en la URL y en las consultas de búsqueda de WordPress. Ten en cuenta que un slug solo puede contener letras y números, y se convertirá automáticamente a minúsculas.

A continuación, rellene los nombres en plural y singular de su taxonomía personalizada.

Desde ahí, tienes la opción de hacer clic en el enlace ‘Rellenar etiquetas adicionales basadas en las etiquetas elegidas’. Si lo hace, el complemento rellenará automáticamente el resto de los campos de las etiquetas.

Ahora, puede desplazarse hasta la sección “Etiquetas adicionales”.

En esta área, puede proporcionar una descripción de su tipo de contenido.

Labeling your WordPress taxonomy

Estas etiquetas se utilizan en su escritorio de WordPress cuando edita y gestiona el contenido de esa taxonomía personalizada en particular.

A continuación, tenemos la opción de ajustes. En esta área, puede establecer diferentes atributos para cada taxonomía que cree. Cada opción tiene una descripción que detalla lo que hace.

Create custom taxonomy hierarchy

En la captura de pantalla anterior, verá que hemos optado por jerarquizar esta taxonomía.

Esto significa que nuestra taxonomía “Temas” puede tener subtemas. Por ejemplo, un tema llamado “Ficción” puede tener subtemas como “Fantasía”, “Suspense”, “Misterio” y otros.

Hay muchos otros ajustes más abajo en la pantalla de su escritorio de WordPress, pero puede dejarlos como están para este tutorial.

Ahora puede hacer clic en el botón “Añadir taxonomía” de la parte inferior para guardar su taxonomía personalizada.

Después, puede editar el tipo de entrada asociada a esta taxonomía en el editor de contenido de WordPress para empezar a utilizarla.

Using taxonomy in post editor

Creación manual de taxonomías personalizadas (con código)

Este método requiere que añadas código a tu sitio web WordPress. Si no lo ha hecho antes, le recomendamos que lea nuestra guía sobre cómo añadir fácilmente fragmentos de código en WordPress.

No recomendamos editar directamente los archivos de WordPress porque cualquier pequeño error puede romper todo el sitio. Por eso recomendamos a todo el mundo que utilice WPCode, el plugin de fragmentos de código más fácil y seguro que existe.

Para empezar, tendrás que instalar y activar el plugin gratuito WPCode. Para obtener instrucciones detalladas, consulte nuestra guía paso a paso sobre cómo instalar un plugin de WordPress.

1. Creación de una taxonomía jerárquica

Empecemos con una taxonomía jerárquica que funciona como categorías y puede tener términos padres e hijos.

Una vez que haya instalado y activado WPCode, puede navegar a Fragmentos de código ” Añadir fragmento en su escritorio de WordPress.

Desde aquí, puede pasar el ratón por encima de “Añadir su código personalizado (nuevo fragmento)” y hacer clic en “Usar fragmento”.

Add a new custom snippet in WPCode

A continuación, accederá a la página “Crear fragmento de código personalizado”.

Simplemente asigne un nombre a su nuevo fragmento de código y pegue el siguiente código en el área de texto:

//hook into the init action and call create_book_taxonomies when it fires
 
add_action( 'init', 'create_subjects_hierarchical_taxonomy', 0 );
 
//create a custom taxonomy name it subjects for your posts
 
function create_subjects_hierarchical_taxonomy() {
 
// Add new taxonomy, make it hierarchical like categories
//first do the translations part for GUI
 
  $labels = array(
    'name' => _x( 'Subjects', 'taxonomy general name' ),
    'singular_name' => _x( 'Subject', 'taxonomy singular name' ),
    'search_items' =>  __( 'Search Subjects' ),
    'all_items' => __( 'All Subjects' ),
    'parent_item' => __( 'Parent Subject' ),
    'parent_item_colon' => __( 'Parent Subject:' ),
    'edit_item' => __( 'Edit Subject' ), 
    'update_item' => __( 'Update Subject' ),
    'add_new_item' => __( 'Add New Subject' ),
    'new_item_name' => __( 'New Subject Name' ),
    'menu_name' => __( 'Subjects' ),
  );    
 
// Now register the taxonomy
  register_taxonomy('subjects',array('books'), array(
    'hierarchical' => true,
    'labels' => $labels,
    'show_ui' => true,
    'show_in_rest' => true,
    'show_admin_column' => true,
    'query_var' => true,
    'rewrite' => array( 'slug' => 'subject' ),
  ));
 
}

Asegúrese de cambiar el “Tipo de código” a “Fragmento de código PHP” y de activar el conmutador.

A continuación, puedes seguir adelante y hacer clic en “Guardar fragmento de código”.

Add custom taxonomy with WPCode

No olvide sustituir el nombre de la taxonomía y las etiquetas del fragmento de código por sus propias etiquetas de taxonomía. También te darás cuenta de que esta taxonomía está asociada con el tipo de contenido Libros. Tendrás que cambiarla por el tipo de contenido con el que quieras utilizarla.

A continuación, desplácese hacia abajo y asegúrese de que las opciones “Insertar automáticamente” y “Ejecutar en todas partes” están seleccionadas en el cuadro Inserción.

WPCode Run Everywhere

Una vez hecho esto, puede desplazarse a la parte superior y hacer clic en el botón “Actualizar” para aplicar los cambios.

2. Creación de una taxonomía no jerárquica

Para crear una taxonomía personalizada no jerárquica como las etiquetas, utilizará WPCode y seguirá exactamente los mismos pasos que arriba.

Solo, usarás este código en su lugar:

//hook into the init action and call create_topics_nonhierarchical_taxonomy when it fires
 
add_action( 'init', 'create_topics_nonhierarchical_taxonomy', 0 );
 
function create_topics_nonhierarchical_taxonomy() {
 
// Labels part for the GUI
 
  $labels = array(
    'name' => _x( 'Topics', 'taxonomy general name' ),
    'singular_name' => _x( 'Topic', 'taxonomy singular name' ),
    'search_items' =>  __( 'Search Topics' ),
    'popular_items' => __( 'Popular Topics' ),
    'all_items' => __( 'All Topics' ),
    'parent_item' => null,
    'parent_item_colon' => null,
    'edit_item' => __( 'Edit Topic' ), 
    'update_item' => __( 'Update Topic' ),
    'add_new_item' => __( 'Add New Topic' ),
    'new_item_name' => __( 'New Topic Name' ),
    'separate_items_with_commas' => __( 'Separate topics with commas' ),
    'add_or_remove_items' => __( 'Add or remove topics' ),
    'choose_from_most_used' => __( 'Choose from the most used topics' ),
    'menu_name' => __( 'Topics' ),
  ); 
 
// Now register the non-hierarchical taxonomy like tag
 
  register_taxonomy('topics','books',array(
    'hierarchical' => false,
    'labels' => $labels,
    'show_ui' => true,
    'show_in_rest' => true,
    'show_admin_column' => true,
    'update_count_callback' => '_update_post_term_count',
    'query_var' => true,
    'rewrite' => array( 'slug' => 'topic' ),
  ));
}

Observe la diferencia entre los dos fragmentos de código. En la función register_taxonomy( ), el valor del argumento jerárquico se establece en true para la taxonomía tipo categoría y en false para las taxonomías tipo etiqueta.

Además, en el array de etiquetas para taxonomías no jerárquicas, hemos añadido null para los argumentos parent_item y parent_item_colon, lo que significa que no se mostrará nada en la interfaz de usuario para crear un elemento / artículo padre o una taxonomía que pueda tener subtemas.

Taxonomies in post editor

De nuevo, asegúrese de editar el código para incluir sus propias etiquetas de taxonomía personalizadas.

Visualización de taxonomías personalizadas

Ahora que hemos creado taxonomías personalizadas y hemos añadido algunos términos, su tema de WordPress seguirá sin mostrarlos.

Para mostrarlos, deberá añadir código a su tema o tema hijo de WordPress. En concreto, este código debe añadirse a los archivos de plantilla en los que desee mostrar los términos.

Puedes añadir manualmente este fragmento de código a los archivos de tu tema, como single.php, content.php, archive.php o index.php. Para averiguar qué archivo necesitas editar, puedes consultar nuestra guía sobre la jerarquía de plantillas de WordPress para obtener instrucciones paso a paso.

Sin embargo, si no se hace correctamente, esto puede romper su sitio, por lo que una vez más recomendamos el uso de la libre WPCode plugin.

Tendrás que añadir el siguiente código donde quieras que aparezcan los términos:

<?php the_terms( $post->ID, 'topics', 'Topics: ', ', ', ' ' ); ?>

A continuación, sólo tienes que seguir los pasos anteriores para pegar el fragmento de código en WPCode.

Pero en Inserción, debe hacer clic en el menú desplegable junto a “Ubicación” y seleccionar dónde desea mostrar la taxonomía, como antes de la entrada, después de ella, o incluso entre párrafos.

WPCode Insertion box

Para este tutorial, seleccionaremos ‘Insertar después de la entrada’.

En la siguiente imagen puede ver cómo aparecerá en su sitio activo.

Custom Taxonomy Displayed

Añadir taxonomías para entradas personalizadas

Ahora que ya sabe cómo crear taxonomías personalizadas, pongámoslas en práctica con un ejemplo.

Vamos a crear una taxonomía y llamarla ‘No ficción’. Como tenemos un tipo de contenido personalizado llamado “Libros”, es similar a cómo se crea una entrada de blog normal.

En su escritorio de WordPress, puede navegar a Libros ” Temas para añadir un término o tema.

Adding a term for your newly created custom taxonomy

En esta pantalla, verás 4 áreas:

  • Nombre
  • Slug
  • Padres
  • Descripción

En el campo del nombre, escriba el término que desea añadir. Puede omitir la parte del slug y proporcionar una descripción para este término en particular.

Por último, haga clic en el botón “Añadir nuevo tema” para crear su nueva taxonomía.

El término recién añadido debería aparecer en la columna de la derecha.

Term added

Ahora tiene un nuevo término que puede utilizar en las entradas de su blog. También puede añadir términos directamente mientras edita o escribe contenido bajo ese tipo de entradas en particular.

Sólo tiene que ir a Libros ” Añadir nuevo para crear una entrada.

En el editor de entradas, encontrarás la opción de seleccionar o crear nuevos términos en la columna de la derecha.

Adding new terms or select from existing terms

Después de añadir los términos, puede seguir adelante y publicar ese contenido.

Todas sus entradas archivadas bajo ese término serán accesibles en su sitio web utilizando su propia URL. Por ejemplo, las entradas archivadas bajo el tema “Ficción” aparecerían en la siguiente URL:

https://example.com/subject/fiction/

Taxonomy template preview

Ahora que ha creado taxonomías personalizadas, es posible que desee mostrarlas en el menú de navegación de su sitio web.

Deberá dirigirse a Apariencia ” Menús y seleccionar los términos que desea añadir en la pestaña de taxonomía personalizada que aparece en la parte izquierda de la pantalla.

Adding terms to navigation menu

No olvides hacer clic en el botón “Guardar menú” para guardar tus ajustes.

Ahora puede visitar su sitio web para ver su menú en acción.

Adding custom taxonomy in navigation menu

Para más detalles, puede consultar nuestra guía paso a paso sobre cómo crear un menú desplegable en WordPress.

Tutorial en vídeo

Si prefiere ver y aprender a crear taxonomías personalizadas, compruebe nuestro tutorial en vídeo:

Subscribe to WPBeginner

Bonificación: Profundizar en las taxonomías de WordPress

Las taxonomías personalizadas te permiten hacer montones de cosas. Por ejemplo, puede mostrarlas en un widget de la barra lateral o añadir iconos de imagen para cada término.

También puede para taxonomías personalizadas y permitir que los usuarios se suscriban a términos individuales. De este modo, sus lectores solo recibirán actualizaciones acerca del contenido específico que les interese.

Si desea personalizar la disposición de sus páginas de taxonomía personalizada, entonces usted puede comprobar fuera SeedProd. Es el mejor editor de arrastrar y soltar página de WordPress y constructor tema que le permite crear disposiciones personalizadas sin ningún código.

Select three column layout

Para obtener más información, puede comprobar nuestro artículo sobre cómo crear una página personalizada en WordPress.

Esperamos que este artículo te haya ayudado a aprender cómo crear taxonomías personalizadas en WordPress. Puede que también quieras ver nuestras guías sobre cómo añadir imágenes de taxonomía (iconos de categoría) en WordPress y cómo cambiar, mover y borrar correctamente las categorías de WordPress.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Descargo: Nuestro contenido está apoyado por los lectores. Esto significa que si hace clic en algunos de nuestros enlaces, podemos ganar una comisión. Vea cómo se financia WPBeginner , por qué es importante, y cómo puede apoyarnos. Aquí está nuestro proceso editorial .

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

El último kit de herramientas de WordPress

Obtenga acceso GRATUITO a nuestro kit de herramientas - una colección de productos y recursos relacionados con WordPress que todo profesional debería tener!

Reader Interactions

111 comentariosDeja una respuesta

  1. joe barrett

    Don’t forget to add ‘show_in_rest’ => true,
    if you want to use your custom items in rest api to $args

    • WPBeginner Support

      Thanks for sharing this for those wanting to add this functionality.

      Administrador

  2. Michael Morad-McCoy

    I tried putting this in a site-specfic plug-in and get the following in a box at the top:
    y() expects parameter 1 to be a valid callback, function ‘create_topics_hierarchical_taxonomy’ not found or invalid function name in /home2/kaibabpr/public_html/wp-includes/class-wp-hook.php on line 286

    Warning: Cannot modify header information – headers already sent by (output started at /home2/kaibabpr/public_html/wp-includes/class-wp-hook.php:286) in /home2/kaibabpr/public_html/wp-admin/includes/misc.php on line 1198

    as this is the first time I tried this, I’m at a loss.

    • WPBeginner Support

      You may want to ensure your site-specific plugin is a php file after you added the code as sometimes your operating system can try to edit the file type.

      Administrador

  3. Naji Boutros

    Do you have a different plugin to recommend?

  4. Ajeet singh

    this is very helpful tutorial …..thnks a lot.

  5. Suresh

    Thanks for sharing this code. I used non-hierarchy code, and admin part is working fine. I have created a separate template as well like taxonomy-[taxoName]-.php But while trying to access the URL, giving HTTP error 500. I have tried multiple things, like new cache starts, permalink re-save, new .htaccess and memory increase. even then page is not working. kindly help

  6. Rabby

    WOW, Amazing and helpful details. I’ve created my custom taxonomy using manual rules. Thanks

  7. Joseph Peter

    Hi,
    than you for this useful information, iam new to wordpress and i wanted to know the meaning thats i landed here, it was actually helpful.

    Best Regards

    Joseph Peter

  8. Cindi Gay

    I used the code for adding a tag to a custom post type. Luckily Topics is exactly the label I needed so all I needed to change was post to lesson (I am modifying the LifterLMS lesson post type).

    Now I want to display the tags. I tried using the default Wordpress Tag Cloud but it does not change to the newly added tag. It continues to show all my post tags even when I choose Topics

    Is there a step I am missing? How do I display the new tag: Topics?

  9. Ero

    Taxonomies don’t behave exactly like default posts’ categories. They don’t appear in the URL (especially for nested taxonomies). Is there any way to set a custom taxonomy associated to a custom post type to behave like posts’ categories ?

  10. Rangan Roy

    I have used this code in my gallery custom post type for category support. It shows the name of the category but when i click on the category name it shows 404:error not found. Please help me to solve it. I want the category posts to show on my archive.php page.

    • Utshab Roy

      I got this same problem that you are facing. The way I solved it is very easy. Go to your permalink settings and click the save button. Refresh the page. This simple step will save the issue.

      • Carol

        This worked! Thank you so much.

  11. Russell

    Hi, I created custom meta box with new category. I can also show it to the post page. But when I click to the newly created category item it gives a 404 page. I wan it to work like tags, default category or author. So that If I click it shows all the post under that category.

  12. Olivier

    Hello,

    I am new to WordPress and coding in general. This tutorial is very well explained, thank you.

    However I don’t understand how to display the terms of my taxonomy on my pages.
    Where do I have to go to “Add this single line of code in your single.php file within the loop” ?

    Thank you for your help
    Best,
    Olivier

  13. Azamat

    Thank you so much for this great tutorial!
    I created custom taxanomy on my website dedicated to books and now I’m able to filter books by authors!

  14. James Angel

    The trouble with some plugins is that they may not be compatible with all themes. I have found that it pays to have a qualified developer do his/her part and test and troubleshoot any Web site alteration after adding a plugin or updating Wordpress to a newer version to ensure everything works as it should.

  15. paul

    Man you are a legend,
    i struggled 3 days to get this, which i found in many websites, but not as clear as this.
    Thanks!

      • Rangan Roy

        I have used this code in my gallery custom post type for category support. It shows the name of the category but when i click on the category name it shows 404.php page. Please help me to solve it. I want the category posts to show on my archive.php page.

  16. Ayla

    I’ve created a custom post type and a taxonomy to go with it, but when I create a custom post and add tags to it they don’t show up like normal tags do on normal posts. How do I get them to display at the bottom of the post like normal so people can click on them and find more like it?

    Thank you!
    -Ayla

    • WPBeginner Support

      You will need to create a new template to display your custom post type and edit that template to show your custom taxonomy.

      Administrador

  17. Giulia

    Hi everybody! First of all thank you for this article!
    I’ve found that “Simple Taxonomies” plugin is kind of out of date, since it hasn’t been updated since 2 years…. do you have any other plugin to suggest to create custom taxonomies?
    thanks :-)
    Giulia

    • Mario

      I’m not the author of this post, but I use “Custom Post Type UI” to create custom taxonomies. With 300k installs, I’m pretty sure this plugin is as close as you can get to industry standard.

      Hope this helps!

  18. Ryan

    How do you disassociate the posts with the “regular” categories?

  19. Sunny

    Hello,

    The description is not prominent by default; however, some themes may show it. But still show on front.

    How to hide taxonomy description from front ?
    I want to add description on taxonomy but i don’t want they show on front .

    Please tell me about what i can do.

    Thank You

  20. ajax

    How do one automate the population of the taxonomy value with the value in a custom field.

  21. Charles Hall

    The article is OK, but the video is very poor. The sound quality is bad, she talks way too fast, obvious things are elaborated on but the explanation of what you’re doing and why is missing, as is the other content in the lower portion of the article.

  22. Jennifer

    I am working on a WordPress website. I created categories using a plugin called “Categories Images”. One of the categories is named “Videos” so there is one folder/category that is supposed to show videos but images. The problem is, because the plugin is designed to upload images only, the YouTube videos do not show up. How can I edit the PHP files (create a custom taxonomy, edit single.php, edit taxonomy-{taxonomy-slug}.php, etc.) so that the post can show and play YouTube videos??

    • Jamie Wallace

      If you want more control over how things are pulled from the backend to the frontend look into using the Advanced Custom Fields plugin. This is a plugin for developers (so some code is involved) but its very powerful for things like what you ask

  23. Muhammad

    Hi I have followed the manual way of creating custom taxonomy and i just used Ads/Ad instead of Topics/Topic . But i don’t see any custom taxonomy in post editor though i checked the custom taxonomy form Screen Options.

    though the custom taxonomy(Ads) is showing in admin submenu under Posts.

    • Muhammad

      Here is my code snipped in functions.php file

      _x( ‘Ads’, ‘taxonomy general name’ ),
      ‘singular_name’ => _x( ‘Ad’, ‘taxonomy singular name’ ),
      ‘search_items’ => __( ‘Search Ads’ ),
      ‘all_items’ => __( ‘All Ads’ ),
      ‘parent_item’ => __( ‘Parent Ad’ ),
      ‘parent_item_colon’ => __( ‘Parent Ad:’ ),
      ‘edit_item’ => __( ‘Edit Ad’ ),
      ‘update_item’ => __( ‘Update Ad’ ),
      ‘add_new_item’ => __( ‘Add New Ad’ ),
      ‘new_item_name’ => __( ‘New Ad Name’ ),
      ‘menu_name’ => __( ‘Ads’ ),
      );

      // Now register the taxonomy

      register_taxonomy(‘ads’,array(‘post’), array(
      ‘hierarchical’ => true,
      ‘labels’ => $labels,
      ‘show_ui’ => true,
      ‘show_admin_column’ => true,
      ‘query_var’ => true,
      ‘rewrite’ => array( ‘slug’ => ‘ad’ ),
      ));

      }

      ?>

  24. Robert Herold

    How to show the number of posts on taxonomy-{taxonomy-slug}.php? :)

  25. Robert Herold

    How can I display my custom taxonomies list like the category list

  26. Abdul Rauf Bhatti

    Hy Dear WPBEGINNER SUPPORT,

    I have learned many things in this tutorial next time will you please elaborate functions parameter which you have used some time i got in trouble or confused with parameters.

    Thanks a lot Nice tutorial 5 rating

  27. lee

    Is there a way to get multiple custom taxonomy to use the same slug or same url? Please show us how if you or anyone knows.

  28. pdepmcp

    It may sound obvious, but…remember to refresh the permalink cache or you can waste some hours trying to figure out why archive pages don’t work…

    • Ilya

      Thank you very much!!!
      I wasted hours in debug mode, but cannot determine why my permalink redirects to 404 page! But after flushing “permalink cache” all works fine.
      Thank you again!

  29. winson

    Hello.

    How can I get a different Posts Link? I mean I want to get 2 different links after I published a New Post.

    E.G:

    Category Name – > Facebook (theme template A)

    Topic Name – > Twitter (theme template B)

    Then I submit a post to these 2 Categories. I want get 1 link for “Facebook” and 1 Link for “Twitter”.

    Best Regards

  30. foolish coder

    how to create single pages / templates for taxonomies?

    I mean like single.php not like category.php

  31. fatima

    what if we want to create more than 2 taxonomies, categories style (hierarchy true)

  32. Aalaap Ghag

    I’m building a site which has multiple item thumbnails, each of which leads to a page with multiple images for that item (i.e. product). Are taxonomies the way to go or should I be looking at something else?

  33. leona

    Hi This is a great tutorial. But what if I want to display a custom taxonomies as posts in my menu? for instance I have a custom post type called ‘poems’ and custom taxomies classic, modern, new wave. each poem post is assigned one of these taxonomies. In the menu I want to see a menu entitled poems with 3 subheadings (classic, modrn, new wave). Each will display only the poems tagged with one taxonomy. Is this possible?

  34. angel1

    This is great! How do I create “related posts” for the custom taxonomy?

    I’m assuming I need to put a conditional php code to display related posts for the new custom taxonomy to appear only when it’s a new taxonomy post and to hide when it is a basic category/tag post since they are both sharing the same content.php file.

    Any suggestions would be greatly appreciated.

  35. SteveMTNO

    I used the code above to create the custom taxonomy – everything worked great. The field was added to all of my posts, and I populated it accordingly.

    I’m using the “Taxonomy Dropdown Widget” plugin – that works too.. sort of.

    The dropdown is populated correctly, but when you click on one of the items to display those posts, I get a 404. However the plugin works for displaying tags.

    Any ideas? I’ll be happy to post my code, just wasn’t sure if I paste it in here or somewhere and link to it here instead.

    Let me know.. thanks!

    SteveMTNO

    • Ruben

      Go to Setting > Permalinks > Save Changes
      (don’t need to make any changes, this just rewrites your .htaccess file so the link works)
      This step should be included in the post?

  36. David

    Bad tutorial. You just expect people to copy/paste the code and don’t explain how it works.

    • WPBeginner Support

      No, we don’t want people to just copy paste the code, we want them to study it and modify if they want.

      Administrador

  37. Cletus

    Hi, can you recommend a different taxonomy plugin that works?
    Even a premium version, the one you’ve posted hasn’t been updated in months and the author seems to have done one.

    • WPBeginner Support

      The plugin works great, and the author has 19 other plugins. It also has great reviews and we have personally tested and used it. However, if you would still like to try some other plugin, then you can look at GenerateWP which will allow you to generate the code for your custom taxonomy. You can then paste this code in your theme’s functions.php file or a site-specific plugin.

      Administrador

  38. Dineshkumar

    I am beginner using classifieds wordpress theme my taxonomy list is not working correctly
    when i select country it shows correct bt when i select state it shows state list with city list when i select city i doesnot show below the parent how can i solve it without using plugin please help me

  39. Joe

    This is probably a newbie question, but I can’t find the answer anywhere. I want to display the hierarchical path of each page at the top of the page. This page for example has “WPBEGINNER» BLOG» TUTORIALS» HOW TO CREATE CUSTOM TAXONOMI…” at the top and each item is a link. I lack the web vocabulary to know what this is called. If anyone can tell me what terms to search for to figure out how to do this that would be excellent.

    • WPBeginner Support

      Joe these are called breadcrumbs. You can add breadcrumbs to your site using Yoast’s WordPress SEO Plugin. You can also search for breadcrumbs on WordPress plugin directory to find other plugins.

      Administrador

  40. Mark

    I was getting 404 after manually setting up a custom taxonomy with your instructions and code. For anybody else who does, below is the solution I found on Codex.

    “If your site uses custom permalinks, you will need to flush your permalink structure after making changes to your taxonomies, or else you may see a “Page Not Found” error. Your permalink structure is automatically flushed when you visit Settings > Permalinks in your WordPress dashboard. “

    • SteveMTNO

      I was getting the same 404 issue after making the taxonomy change. Flushing the permalinks worked perfectly.. thanks!

  41. Pepper

    Hi,
    thank you so much for your awesome tutorials!

  42. Jordan

    Hello, thank you for the great article.

    Is there anyway to create a page for a custom taxonomy?

    Right now my custom taxonomy is called “issue” and I want to display all issue 1 posts on the home page. The problem is, the link looks like this example.com/issue/1 which is fine. Except that there is no way to make wordpress register this as the home page

    Thanks

    • WPBeginner Support

      You can replace your default index template with home.php inside home.php add this line just before the loop
      $query = new WP_Query( array( ‘issues’ => ‘issue 1’ ) );

      Administrador

  43. Keisa

    How can I display each taxonomy on separate pages?

    For example//

    PSDS (page)
    —Vampire Diaries
    ——–Elena Gilberts
    ——–Stephen
    ——–Damon
    ——–Klaus

    —Teen Wolf
    ——–Derek Hale
    ——–Scott McCall
    ——–Stiles Stilinski
    ——–Lydia Martin

    How could I display each character on their own page using taxonomies?

    I used “psd_categories” for the taxonomy, then I added “Teen Wolf” as a category.
    I found a way to display links to the show’s page, but I have no idea on how to display all posts under each characters name…
    I’m extremely new to this so please bare with me lol.

    Can I send an email perhaps? >.<

  44. Kiki

    Is there a way to make the categories not hyperlinks? I just want them listed. I don’t want them to link anywhere.

  45. Azis

    thanks for the easy-to-understand tutorial :D

    and could you help me to insert those custom taxonomies into the post class? like, for example… when we put a category named ‘tutorial’ into the post, the category would normally get inserted in the post class as ‘category-tutorial’, right? but it seems the example from this article doesn’t do that.

    Once again, thanks for this great article.

    P.S: I choose the manual way to create the custom taxonomies, since I prefer not to use additional plugins for my site if possible.

  46. Robby Barnes

    Hello and thanks for this information.

    I am using the Responsive Child Theme on WP 3.5.1 on DreamHost.

    I am building a WordPress site for a small print publication. I am trying to get my WordPress pages (not posts) to display the names of authors of articles that are on the pages. I installed the Simple Taxonomy plugin and created a custom taxonomy. I set it to work on pages and media, but not on posts. Using the widget for Simple Taxonomies I was able to have the author names show up on the right sidebar.

    The custom taxonomy shows up on the Edit Page admin panel and seems to permit me to select authors to associate with a page… But, after updating the page the authors don’t appear on the HTML page.

    I followed your suggestion and pasted some code into what I believe is the Loop (not sure if pages have the loop) and it didn’t change anything.

    I would appreciate any suggestions for dealing with this. / Robby, Seattle, USA

    • Editorial Staff

      The pages do have loop, and yes you would have to paste the code to make sure the taxonomy appears on the HTML page. Email us the page.php file or where you added the code. Use our contact form.

      Administrador

  47. Mattia

    Hi, in the code example, I am missing how you link the “topic” custom taxonomy to the “books” custom post type… Should I replace “post” with “books”?

      • Arpit

        How can i target categories of taxonomy?

        Just like i want to execute a function when products of only Books > Fiction category is shown…

Deja tu comentario

Gracias por elegir dejar un comentario. Tenga en cuenta que todos los comentarios son moderados de acuerdo con nuestros política de comentarios, y su dirección de correo electrónico NO será publicada. Por favor, NO utilice palabras clave en el campo de nombre. Tengamos una conversación personal y significativa.