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

Jak tworzyć własne taksonomie w WordPress?

Czy chcesz tworzyć własne taksonomie w WordPress?

Domyślnie WordPress pozwala organizować twoją treść za pomocą kategorii i tagów. Jednak dzięki własnym taksonomiom możesz jeszcze bardziej dostosować sposób sortowania twoich treści.

W tym artykule pokażemy, jak łatwo tworzyć własne taksonomie w WordPressie za pomocą wtyczki lub bez niej.

How to create custom taxonomies in WordPress

Czym jest taksonomia WordPress?

Taksonomia WordPress to sposób na organizowanie grup wpisów i własnych typów treści.

Domyślnie WordPress zawiera dwie taksonomie zwane kategoriami i tagami. Możesz ich używać do organizowania twoich wpisów na blogu.

Jeśli jednak używasz niestandardowego typu treści, kategorie i tagi mogą nie wyglądać odpowiednio dla wszystkich treści.

Można na przykład utworzyć niestandardowy typ treści o nazwie „Książki” i posortować go przy użyciu niestandardowej taksonomii o nazwie „tematy”.

Możesz dodać taksonomie tematyczne, takie jak Przygoda, Romans, Horror i inne tematy książek, które chcesz. Pozwoli to tobie i twoim czytelnikom na łatwe sortowanie i filtrowanie książek według każdego tematu.

Taksonomie mogą być również hierarchiczne, co oznacza, że można mieć główne lub nadrzędne tematy, takie jak beletrystyka i literatura faktu. Następnie pod każdą kategorią znajdują się podtematy lub dzieci.

Na przykład nadrzędna kategoria Fikcja może mieć jako dzieci kategorie Przygoda, Romans i Horror.

Teraz, gdy już wiesz, czym jest dostosowana taksonomia, dowiedzmy się, jak tworzyć własne taksonomie w WordPress.

Chociaż tworzenie własnych taksonomii jest potężne, jest wiele do omówienia. Aby pomóc w prawidłowej konfiguracji, stworzyliśmy łatwy spis treści poniżej:

Tworzenie własnych taksonomii w WordPress (poradnik filmowy)

Subscribe to WPBeginner

Jeśli wolisz instrukcje pisemne, czytaj dalej.

Tworzenie własnych taksonomii za pomocą wtyczki (łatwy sposób)

Pierwszą rzeczą, którą musisz zrobić, to zainstalować i włączyć wtyczkę Custom Post Type UI. Aby uzyskać szczegółowe informacje, zapoznaj się z naszym przewodnikiem na temat instalacji wtyczki WordPress.

W tym poradniku utworzyliśmy już własny typ treści i nazwaliśmy go „Książki”. Upewnij się więc, że masz utworzony własny typ treści, zanim zaczniesz tworzyć taksonomie.

Następnie przejdź do pozycji menu CPT UI ” Add/Edit Taxonomies w obszarze administracyjnym WordPress, aby utworzyć twoją pierwszą taksonomię.

Creating custom taxonomy using plugin

Na tym ekranie należy wykonać następujące czynności:

  • Utwórz uproszczoną nazwę twojej taksonomii (zostanie ona umieszczona w adresie URL).
  • Utwórz etykietę w liczbie mnogiej
  • Utwórz pojedynczą etykietę
  • Automatyczne wypełnianie etykiet

Twoim pierwszym krokiem jest utworzenie uproszczonej nazwy dla taksonomii. Ta uproszczona nazwa jest używana w adresie URL i w zapytaniach wyszukiwania WordPress.

Może on zawierać tylko litery i cyfry i zostanie automatycznie przekonwertowany na małe litery.

Następnie wypełnisz nazwy w liczbie mnogiej i pojedynczej dla twojej dostosowanej taksonomii.

Stamtąd możesz kliknąć odnośnik „Wypełnij dodatkowe etykiety na podstawie wybranych etykiet”. Jeśli to zrobisz, wtyczka automatycznie wypełni pozostałe pola etykiet.

Teraz przewiń w dół do sekcji „Dodatkowe etykiety”. W tym obszarze możesz podać opis twojego typu treści.

Labeling your WordPress taxonomy

Etykiety te są używane w twoim kokpicie WordPress podczas edytowania i zarządzania treścią dla tej konkretnej dostosowanej taksonomii.

Następnie mamy opcję ustawień. W tym obszarze można skonfigurować różne atrybuty dla każdej tworzonej taksonomii. Każda opcja ma opis szczegółowo opisujący jej działanie.

Create custom taxonomy hierarchy

Na powyższym zrzucie ekranu widać, że zdecydowaliśmy się uczynić tę taksonomię hierarchiczną. Oznacza to, że nasza taksonomia „Tematy” może mieć podtematy. Na przykład temat o nazwie Fikcja może mieć podtematy takie jak Fantastyka, Thriller, Tajemnica i inne.

Istnieje wiele innych ustawień w dalszej części twojego ekranu w kokpicie WordPress, ale możesz pozostawić je bez zmian na potrzeby tego poradnika.

Możesz teraz kliknąć przycisk „Dodaj taksonomię” na dole, aby zapisać twoją dostosowaną taksonomię.

Następnie edytuj typ treści powiązany z tą taksonomią w edytorze treści WordPress, aby zacząć z niej korzystać.

Using taxonomy in post editor

Ręczne tworzenie własnych taksonomii (z kodem)

Ta metoda wymaga dodania kodu do twojej witryny internetowej WordPress. Jeśli nie zrobiłeś tego wcześniej, zalecamy przeczytanie naszego przewodnika na temat łatwego dodawania fragmentów kodu w WordPress.

Nie zalecamy bezpośredniej edycji twoich plików WordPress, ponieważ każdy drobny błąd może zepsuć całą witrynę. Dlatego zalecamy wszystkim korzystanie z WPCode, najłatwiejszej i najbezpieczniejszej dostępnej wtyczki do fragmentów kodu.

Aby rozpocząć, należy zainstalować i włączyć bezpłatną wtyczkę WPCode. Aby uzyskać szczegółowe instrukcje, zobacz nasz przewodnik krok po kroku, jak zainstalować wtyczkę WordPress.

1. Tworzenie hierarchicznej taksonomii

Zacznijmy od hierarchicznej taksonomii, która działa jak kategorie i może mieć nadrzędne i podrzędne taksonomie.

Po zainstalowaniu i włączaniu WPCode, możesz przejść do Code Snippets ” Add Snippet w twoim kokpicie WordPress.

Najedź kursorem myszy na „Add Your Custom Code (New Snippet)” i kliknij „Use Snippet”.

Add a new custom snippet in WPCode

Następnie zostaniesz przeniesiony na stronę „Utwórz własny fragment kodu”. Po prostu nazwij swój nowy fragment kodu i wklej poniższy kod do obszaru tekstowego.

//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' ),
  ));
 
}

Pamiętaj, aby zmienić rodzaj kodu na „PHP Snippet” i włączyć przełącznik na „Aktywny”.

Add custom taxonomy with WPCode

Nie zapomnij zastąpić nazwy taksonomii i etykiet w fragmencie kodu twoimi własnymi etykietami taksonomii. Zauważysz również, że ta taksonomia jest powiązana z typem treści Książki, musisz to zmienić na dowolny typ treści, z którym chcesz jej używać.

Następnie przewiń w dół i upewnij się, że w polu „Wstaw” zaznaczone są opcje „Auto Insert” i „Run Everywhere”.

WPCode Run Everywhere

Gdy to zrobisz, możesz przewinąć z powrotem do góry i kliknąć przycisk „Aktualizuj”, aby wprowadzić twoje zmiany na żywo.

2. Tworzenie niehierarchicznej taksonomii

Aby utworzyć niehierarchiczny konfigurator taksonomii, taki jak Tagi, należy użyć WPCode i wykonać dokładnie te same kroki, co powyżej, tylko zamiast tego należy użyć tego kodu:

//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' ),
  ));
}

Powiadomienie o różnicy między tymi dwoma fragmentami kodu. W funkcji register_taxonomy( ) wartość argumentu hierarchical jest ustawiona na true dla taksonomii podobnych do kategorii i false dla taksonomii podobnych do tagów.

Ponadto w tablicy etykiet dla niehierarchicznych taksonomii dodaliśmy wartość null dla argumentów parent_item i parent_item_colon, co oznacza, że nic nie będzie wyświetlane w interfejsie użytkownika, aby utworzyć element nadrzędny lub taksonomię, która może mieć podtematy.

Taxonomies in post editor

Ponownie, pamiętaj, aby edytować kod, aby dołączyć własne etykiety taksonomii.

Wyświetlanie własnych taksonomii

Teraz, gdy utworzyliśmy własne taksonomie i dodaliśmy kilka taksonomii, twój motyw WordPress nadal nie będzie ich wyświetlał.

Aby je wyświetlić, musisz dodać kod do twojego motywu WordPress lub motywu potomnego.

Kod ten należy dodać do plików szablonów, w których mają być wyświetlane taksonomie.

Możesz ręcznie dodać ten fragment kodu do plików twojego motywu, takich jak single.php, content.php, archive.php lub index.php. Aby dowiedzieć się, który plik należy edytować, zapoznaj się z naszym przewodnikiem po hierarchii szablonów WordPress.

Może to jednak zepsuć twoją witrynę, jeśli nie zostanie to zrobione poprawnie, dlatego ponownie zalecamy użycie bezpłatnej wtyczki WPCode.

Będziesz musiał dodać następujący kod w miejscu, w którym chcesz wyświetlać taksonomie.

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

Wykonaj powyższe kroki, aby wkleić fragment kodu do WPCode.

Natomiast w sekcji Wstawianie należy kliknąć listę rozwijaną obok opcji „Lokalizacja” i wybrać miejsce wyświetlania taksonomii, np. przed wpisem, po nim lub nawet między akapitami.

WPCode Insertion box

Na potrzeby tego poradnika wybierzemy opcję „Wstaw po wpisie”.

Na poniższym obrazku możesz zobaczyć, jak będzie wyglądać Twoja witryna na żywo.

Custom Taxonomy Displayed

Dodawanie taksonomii dla własnych wpisów

Teraz, gdy wiesz już, jak tworzyć własne taksonomie, wykorzystajmy je na przykładzie.

Utworzymy taksonomię i nazwiemy ją Non-fiction.

Ponieważ mamy własny typ treści o nazwie „Książki”, jest to podobne do tworzenia zwykłego wpisu na blogu.

W twoim kokpicie WordPress przejdź do zakładki Książki ” Tematy, aby dodać taksonomię lub temat.

Adding a term for your newly created custom taxonomy

Na tym ekranie widoczne są 4 obszary:

W nazwie wpisz taksonomię, którą chcesz dodać. Możesz pominąć uproszczoną nazwę i podać opis taksonomii (opcjonalnie).

Na koniec kliknij przycisk „Dodaj nowy temat”, aby utworzyć twoją nową taksonomię.

Twoja nowo dodana taksonomia pojawi się teraz w prawej kolumnie.

Term added

Teraz masz nową taksonomię, którą możesz wykorzystać w swoich wpisach na blogu.

Można również dodawać taksonomie bezpośrednio podczas edycji lub pisania treści w ramach danego typu treści.

Aby utworzyć wpis, wystarczy przejść do strony Książki ” Utwórz nowy. W edytorze wpisów znajdziesz opcję wyboru lub utworzenia nowych taksonomii z prawej kolumny.

Adding new terms or select from existing terms

Po dodaniu taksonomii można przystąpić do publikowania treści.

Wszystkie twoje wpisy wpisane pod taksonomią będą dostępne na twojej witrynie internetowej pod ich własnym adresem URL. Na przykład, wpisy wpisane w temacie Fikcja pojawią się pod następującym adresem URL:

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

Taxonomy template preview

Teraz, gdy utworzyłeś własne taksonomie, możesz chcieć wyświetlić je w menu nawigacyjnym twojej witryny internetowej.

Przejdź do Wygląd ” Menu i wybierz taksonomie, które chcesz dodać w karcie własnej taksonomii, która pojawi się po lewej stronie ekranu.

Adding terms to navigation menu

Nie zapomnij kliknąć przycisku „Zapisz menu”, aby zapisać twoje ustawienia.

Możesz teraz przejść na Twoją witrynę internetową, aby zobaczyć Twoje menu w działaniu.

Adding custom taxonomy in navigation menu

Aby uzyskać więcej informacji, zapoznaj się z naszym przewodnikiem krok po kroku, jak utworzyć menu rozwijane w WordPress.

Rozwiń taksonomie WordPressa

Istnieje mnóstwo rzeczy, które można zrobić z własnymi taksonomiami. Można na przykład wyświetlać je w widżecie na panelu bocznym lub dodawać ikonki obrazków dla każdej taksonomii.

Możesz również włączyć kanał RSS dla własnych taksonomii w WordPressie i pozwolić klientom na subskrybowanie poszczególnych taksonomii. W ten sposób twoi czytelnicy będą otrzymywać tylko aktualizacje dotyczące konkretnych treści, które są dla nich ważne.

Jeśli chcesz dostosować układ twoich własnych stron taksonomii, możesz sprawdzić SeedProd. Jest to konfigurator stron i motywów WordPress typu „przeciągnij i upuść „, który umożliwia tworzenie własnych układów bez konieczności kodowania.

Mamy nadzieję, że ten artykuł pomógł ci dowiedzieć się, jak tworzyć własne taksonomie w WordPress. Warto również zapoznać się z naszym przewodnikiem na temat śledzenia odwiedzających witrynę internetową oraz tworzenia własnego motywu WordPress bez pisania kodu.

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.

Ujawnienie: Nasze treści są wspierane przez czytelników. Oznacza to, że jeśli klikniesz na niektóre z naszych linków, możemy otrzymać prowizję. Zobacz jak WPBeginner jest finansowany, dlaczego to ma znaczenie i jak możesz nas wspierać. Oto nasz proces redakcyjny.

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.

Najlepszy zestaw narzędzi WordPress

Uzyskaj BEZPŁATNY dostęp do naszego zestawu narzędzi - zbiór produktów i zasobów związanych z WordPressem, które każdy profesjonalista powinien mieć!

Reader Interactions

112 komentarzyZostaw odpowiedź

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Jiří Vaněk says

    Thank you for the clear instructions. I would like to make my own taxonomy for tutorials on the site. This tutorial is great and clear, thanks.

  3. Kira says

    Hello.
    I don’t understand this part:

    ID, 'topics’, 'Topics: ’, ’, ’, ’ ’ ); ?>

    I mean, should I paste exactly that part into my loop-single.php?
    I’m using a taxonomy called „writer”

    • WPBeginner Support says

      It would depend on where you want to display the terms, normally it would be added to the single.php.

      Administrator

  4. Wolfgang says

    Hi,
    I used your article to create a CPT with a hierarchical and a non-hierarchical taxonomy attached to it. I created a few entries and it all seems to be working fine. Both taxonomies display fine in their respective archive pages. One thing I noticed though when I tried to add the taxonomies to the menu was that the non-hierarchical taxonomy was available in the „Add menu item” column but the hierarchical taxonomy was NOT.
    Is that an expected behavior? If not what could be going wrong?
    Thanks

    • WPBeginner Support says

      The most common issues you could check would be that you have published content in the taxonomy and you may want to test adding a different content type to test if it is an issue with the taxonomy or something else.

      Administrator

    • WPBeginner Support says

      You would want to check under your preferences to ensure it is not hidden for your user.

      Administrator

  5. Gina Wilson says

    This tutorial and specifically the part of how to display the custom taxonomy was a lifesaver! I’m very much a beginner and this was very helpful in understanding where I went wrong in my coding.

    Thank you!!!

  6. Bruno Oliveira says

    Awesome tutorial! i have one question. how do i use my new taxonomy slug as permalink like category (/%category%/%year%/%monthnum%/%day%/%postname%/)

    I want something like /%custom_taxonomy%/%year%/%monthnum%/%day%/%postname%/

    i keep getting 404 error

    • WPBeginner Support says

      That is not something WordPress would allow by default and would require some custom coding to set up.

      Administrator

  7. vikas says

    i tried the plugin method , it sucessfully created a new category in custom post type but it is not showing on my posts like tags and other categoties. can you help me with that?

    • WPBeginner Support says

      You would want to reach out to the support for your specific theme for customizing the display to include your taxonomy.

      Administrator

  8. Richard says

    I am creating a podcast network where I have multiple podcasts on a single site with episodes under each individual podcast. Would something like this work for that? I really don’t want to go the multi site route.

    • WPBeginner Support says

      You can certainly use this should you want or another option would be to create a custom post type depending on your preference.

      Administrator

  9. Maria says

    Hello is possible add the custom taxonomies to a custom product type?

    I create a custom product call drinks and i have several taxonomies like country, material and etc

    I want when the user click in drinks then only apperas those taxonomies, is this posiible?

    • WPBeginner Support says

      If you haven’t done so yet, resave your permalinks for the most common solution :)

      Administrator

  10. Mike Smith says

    this code works great on my site for work. Can you tell me how to add the custom taxonomy into the site’s rss feed?

  11. angela says

    thank you for taking the time to post this, this was the first site that actually explained this and it made sense, haha. im a happy camper now

    • WPBeginner Support says

      It would depend on which method you used to create the custom taxonomy, if you’re using the plugin you would want to reach out to the plugin’s support to make sure they have show_in_rest set to true for seeing it in the block editor.

      Administrator

      • Jem says

        No, I am not using any plugin. I have just copy paste your snippet. Its create new taxonomy. But it is not display in post editor page like category, tags display on rightside panel.

        Can you please guide me how can I show custom taxonomy in post editor page?

        • WPBeginner Support says

          In the register_taxonomy array, you would want to first try adding a new line with the code below:
          'show_in_rest’ => true,

  12. Jim Gersetich says

    The first half of this post is completely useless. the Simple Taxonomy plugin doesn’t work with the current WordPress version, and it hasn’t been updated in four years.

    Please try to find another plugin and change that section to go with the new one.

    • WPBeginner Support says

      Thank you for letting us know, we’ll certainly take a look at updating this article.

      Administrator

  13. joe barrett says

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

  14. Michael Morad-McCoy says

    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 says

      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.

      Administrator

  15. Suresh says

    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

  16. Joseph Peter says

    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

  17. Cindi Gay says

    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?

  18. Ero says

    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 ?

  19. Rangan Roy says

    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 says

      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.

  20. Russell says

    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.

  21. Olivier says

    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

  22. Azamat says

    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!

  23. James Angel says

    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.

  24. paul says

    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 says

        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.

  25. Ayla says

    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

  26. Giulia says

    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 says

      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!

  27. Sunny says

    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

  28. Charles Hall says

    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.

  29. Jennifer says

    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 says

      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

  30. Muhammad says

    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 says

      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’ ),
      ));

      }

      ?>

  31. Abdul Rauf Bhatti says

    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

  32. lee says

    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.

  33. pdepmcp says

    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 says

      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!

  34. winson says

    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

  35. Aalaap Ghag says

    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?

Zostaw odpowiedź

Dziękujemy za pozostawienie komentarza. Pamiętaj, że wszystkie komentarze są moderowane zgodnie z naszymi polityka komentarzy, a Twój adres e-mail NIE zostanie opublikowany. NIE używaj słów kluczowych w polu nazwy. Przeprowadźmy osobistą i konstruktywną rozmowę.