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 typy treści w WordPress?

Uwaga redakcyjna: Otrzymujemy prowizję z linków partnerskich na WPBeginner. Prowizje nie mają wpływu na opinie i oceny naszych redaktorów. Dowiedz się więcej o Proces redakcyjny.

Chcesz dowiedzieć się, jak łatwo tworzyć własne typy treści w WordPressie?

Własne typy treści pozwalają wyjść poza wpisy i strony i tworzyć różne rodzaje treści dla twojej witryny internetowej. Przekształcają one twoją witrynę WordPress z platformy blogowej w potężny system zarządzania treścią(CMS).

W tym artykule pokażemy, jak łatwo tworzyć własne typy treści w WordPress.

How to Create Custom Post Types in WordPress

Czym jest własny typ treści w WordPressie?

Na twojej witrynie internetowej WordPress typy treści są używane do rozróżniania różnych rodzajów treści w WordPress. Wpisy i strony są typami treści, ale służą do różnych celów.

WordPress domyślnie zawiera kilka różnych typów treści:

  • Wpis
  • Strona
  • Załącznik
  • Wersja
  • Menu nawigacji

Możesz także tworzyć własne typy treści, znane jako niestandardowe typy wpisów. Są one przydatne podczas tworzenia treści, które mają inny format niż standardowy wpis lub strona.

Na przykład, jeśli prowadzisz witrynę internetową z recenzjami filmów, prawdopodobnie będziesz chciał utworzyć typ treści dla recenzji filmów. Możesz także utworzyć własne typy treści dla portfolio, referencji i produktów.

Na WPBeginner używamy własnych typów treści dla naszych sekcji Deals i Glossary, aby oddzielić je od naszych codziennych artykułów na blogu. Pomaga nam to lepiej zorganizować treść naszej witryny internetowej.

Niestandardowe typy treści mogą mieć różne niestandardowe pola i własną strukturę kategorii.

Wiele popularnych wtyczek WordPress wykorzystuje niestandardowe typy treści do przechowywania danych na twojej witrynie internetowej WordPress. Poniżej znajduje się kilka najlepszych wtyczek, które wykorzystują własne typy treści:

  • WooCommerce dodaje typ treści „produkt” do twojego sklepu internetowego.
  • WPForms tworzy typ treści „wpforms” do przechowywania wszystkich twoich formularzy.
  • MemberPress dodaje własny typ treści „memberpressproduct”.

Film instruktażowy

Subscribe to WPBeginner

Jeśli wolisz pisemne instrukcje, czytaj dalej.

Czy muszę tworzyć własne typy treści?

Zanim zaczniesz tworzyć własne typy treści na swojej witrynie WordPress, ważne jest, aby ocenić twoje potrzeby. Wiele razy można osiągnąć te same wyniki za pomocą zwykłego wpisu lub strony.

Jeśli nie jesteś pewien, czy twoja witryna potrzebuje niestandardowych typów treści, zapoznaj się z naszym przewodnikiem na temat tego, kiedy potrzebujesz niestandardowego typu treści lub taksonomii w WordPress.

Biorąc to pod uwagę, przyjrzyjmy się, jak łatwo tworzyć niestandardowe typy treści w WordPressie na twój własny użytek.

Pokażemy ci dwie metody, a także omówimy kilka sposobów wyświetlania własnych typów treści na twojej witrynie internetowej WordPress.

Ręczne tworzenie własnego typu treści za pomocą WPCode

Utworzenie własnego typu treści wymaga dodania kodu do pliku functions. php twojego motywu. Zwykle nie zalecamy tego nikomu poza zaawansowanymi użytkownikami, ponieważ nawet niewielki błąd może zepsuć twoją witrynę. Ponadto, jeśli zaktualizujesz swój motyw, kod zostanie usunięty.

Będziemy jednak używać WPCode, najłatwiejszego i najbezpieczniejszego sposobu dla każdego, aby dodać własny kod do twojej witryny internetowej WordPress.

WPCode umożliwia dodawanie własnych fragmentów kodu, a także włączanie wielu funkcji z wbudowanej, wstępnie skonfigurowanej biblioteki kodu, która może zastąpić wiele zainstalowanych dedykowanych lub jednorazowych wtyczek.

Najpierw należy zainstalować i włączyć darmową wtyczkę WPCode. Aby uzyskać szczegółowe instrukcje, zapoznaj się z naszym przewodnikiem krok po kroku, jak zainstalować wtyczkę WordPress.

Po włączaniu, przejdź do Code Snippets „ Add Snippet w twoim kokpicie WordPress. Najedź myszką na „Add Your Custom Code (New Snippet)”, a następnie kliknij „Use Snippet”.

Add custom code in WPCode with new snippet

Następnie zostaniesz przeniesiony do ekranu „Utwórz fragment kodu własnego”.

Teraz możesz nadać swojemu fragmentowi kodu tytuł i włączyć przełącznik na „Aktywny”.

Creating a custom code snippet using WPCode

Następnie wystarczy wkleić poniższy kod w obszarze „Podgląd kodu”. Ten kod tworzy podstawowy własny typ treści o nazwie „Filmy”, który pojawi się na panelu bocznym administratora i będzie działał z dowolnym motywem.

// Our custom post type function
function create_posttype() {
 
    register_post_type( 'movies',
    // CPT Options
        array(
            'labels' => array(
                'name' => __( 'Movies' ),
                'singular_name' => __( 'Movie' )
            ),
            'public' => true,
            'has_archive' => true,
            'rewrite' => array('slug' => 'movies'),
            'show_in_rest' => true,
 
        )
    );
}
// Hooking up our function to theme setup
add_action( 'init', 'create_posttype' );

Jeśli chcesz mieć tylko podstawowy niestandardowy typ treści, po prostu zastąp filmy i Filmy własną nazwą i slugiem CPT i kliknij przycisk „Aktualizuj”.

Jeśli jednak chcesz mieć jeszcze więcej opcji dla twojego własnego typu treści, użyj poniższego kodu zamiast powyższego.

Poniższy kod dodaje wiele innych opcji do niestandardowego typu treści „Filmy”, takich jak obsługa wersji, wyróżniających się obrazków, własnych pól, a także powiązanie niestandardowego typu treści z niestandardową taksonomią o nazwie „gatunki”.

Uwaga: Nie należy łączyć tych dwóch fragmentów kodu, ponieważ WordPress wyświetli błąd, ponieważ oba fragmenty kodu rejestrują ten sam własny typ treści. Zalecamy utworzenie zupełnie nowego fragmentu kodu za pomocą WPCode dla każdego dodatkowego typu treści, który chcesz zarejestrować.

/*
* Creating a function to create our CPT
*/
 
function custom_post_type() {
 
// Set UI labels for Custom Post Type
    $labels = array(
        'name'                => _x( 'Movies', 'Post Type General Name', 'twentytwentyone' ),
        'singular_name'       => _x( 'Movie', 'Post Type Singular Name', 'twentytwentyone' ),
        'menu_name'           => __( 'Movies', 'twentytwentyone' ),
        'parent_item_colon'   => __( 'Parent Movie', 'twentytwentyone' ),
        'all_items'           => __( 'All Movies', 'twentytwentyone' ),
        'view_item'           => __( 'View Movie', 'twentytwentyone' ),
        'add_new_item'        => __( 'Add New Movie', 'twentytwentyone' ),
        'add_new'             => __( 'Add New', 'twentytwentyone' ),
        'edit_item'           => __( 'Edit Movie', 'twentytwentyone' ),
        'update_item'         => __( 'Update Movie', 'twentytwentyone' ),
        'search_items'        => __( 'Search Movie', 'twentytwentyone' ),
        'not_found'           => __( 'Not Found', 'twentytwentyone' ),
        'not_found_in_trash'  => __( 'Not found in Trash', 'twentytwentyone' ),
    );
     
// Set other options for Custom Post Type
     
    $args = array(
        'label'               => __( 'movies', 'twentytwentyone' ),
        'description'         => __( 'Movie news and reviews', 'twentytwentyone' ),
        'labels'              => $labels,
        // Features this CPT supports in Post Editor
        'supports'            => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
        // You can associate this CPT with a taxonomy or custom taxonomy. 
        'taxonomies'          => array( 'genres' ),
        /* A hierarchical CPT is like Pages and can have
        * Parent and child items. A non-hierarchical CPT
        * is like Posts.
        */ 
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'menu_position'       => 5,
        'can_export'          => true,
        'has_archive'         => true,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'capability_type'     => 'post',
        'show_in_rest' => true,
 
    );
     
    // Registering your Custom Post Type
    register_post_type( 'movies', $args );
 
}
 
/* Hook into the 'init' action so that the function
* Containing our post type registration is not 
* unnecessarily executed. 
*/
 
add_action( 'init', 'custom_post_type', 0 );

Możesz również powiadomić o części, w której ustawiliśmy wartość hierarchiczną na false. Jeśli chcesz, aby twój własny typ treści zachowywał się jak strony, a nie wpisy, możesz ustawić tę wartość na true.

Kolejną rzeczą, na którą należy zwrócić uwagę, jest wielokrotne użycie ciągu twentytwentyone , zwanego domeną tekstową. Jeśli twój motyw jest gotowy do tłumaczenia i chcesz, aby własne typy treści były tłumaczone, musisz wspomnieć o domenie tekstowej używanej przez twój motyw.

Możesz znaleźć domenę tekstową twojego motywu w pliku style.css w katalogu motywu lub przechodząc do Wygląd „ Edytor plików motywu w panelu administracyjnym. Domena tekstowa będzie wymieniona w nagłówku pliku.

Finding the textdomain for a theme

Wystarczy zastąpić twentytwentyone domeną tekstową twojego motywu.

Po wprowadzeniu zmian wystarczy kliknąć przycisk „Aktualizuj”, a WPCode zajmie się resztą.

Tworzenie własnego typu treści za pomocą wtyczki

Innym łatwym sposobem na utworzenie własnego typu treści w WordPress jest użycie wtyczki. Ta metoda jest zalecana dla początkujących, ponieważ jest bezpieczna i bardzo łatwa.

Pierwszą rzeczą, którą musisz zrobić, to zainstalować i włączyć wtyczkę Custom Post Type UI. Aby uzyskać więcej informacji, zobacz nasz przewodnik krok po kroku, jak zainstalować wtyczkę WordPress.

Po włączaniu należy przejść do CPT UI ” Add / Edit Post Types, aby utworzyć nowy konfigurator typu treści. Powinieneś znaleźć się na karcie „Dodaj nowy typ treści”.

Create a New Custom Post Type With a Plugin

Po pierwsze, musisz podać slug dla twojego własnego typu treści, takiego jak „filmy”. Ta uproszczona nazwa będzie używana w adresie URL i w zapytaniach WordPress, więc może zawierać tylko litery i cyfry. Następnie należy podać liczbę mnogą i pojedynczą dla twojego niestandardowego typu treści.

Następnie, jeśli chcesz, możesz kliknąć odnośnik „Wypełnij dodatkowe etykiety na podstawie wybranych etykiet”. Spowoduje to automatyczne wypełnienie dodatkowych pól etykiet poniżej i zwykle pozwoli zaoszczędzić czas.

Teraz możesz przewinąć w dół do sekcji „Dodatkowe etykiety”. Jeśli nie kliknąłeś odnośnika, o którym wspomnieliśmy, będziesz teraz musiał podać opis dla twojego typu treści i zmienić etykiety.

Scroll Down to the Additional Labels Section

Etykiety te będą używane w całym interfejsie użytkownika WordPress podczas zarządzania treścią w danym typie treści.

Następnie dostępne są ustawienia typu treści. Tutaj możesz skonfigurować różne atrybuty dla twojego typu treści. Każda opcja posiada krótki opis wyjaśniający jej działanie.

Scroll Down to the Post Type Settings Section

Można na przykład wybrać, aby typ treści nie był hierarchiczny jak strony lub sortować chronologicznie wpisy w odwrotnej kolejności.

Poniżej ustawień ogólnych znajduje się opcja wyboru funkcji edycji obsługiwanych przez ten typ treści. Po prostu zaznacz opcje, które chcesz uwzględnić.

Check the Supports Options You Want to Include

Na koniec kliknij przycisk „Dodaj typ treści”, aby zapisać i utworzyć własny typ treści.

To wszystko. Pomyślnie utworzyłeś swój własny typ treści i możesz zacząć dodawać treści.

Wyświetlanie własnych typów treści na twojej witrynie

WordPress posiada wbudowaną obsługę wyświetlania twoich własnych typów treści. Po dodaniu kilku elementów do nowego niestandardowego typu treści, nadszedł czas, aby wyświetlić je na twojej witrynie internetowej.

Istnieje kilka metod, z których można skorzystać, a każda z nich ma swoje zalety.

Wyświetlanie własnych typów treści przy użyciu domyślnego szablonu archiwum

Po pierwsze, możesz po prostu przejść do Wygląd ” Menu i dodać własny odnośnik do twojego menu. Ten niestandardowy link jest odnośnikiem do twojego własnego typu treści.

Add a Custom Link to Your Menu

Jeśli korzystasz z przyjaznych dla SEO bezpośrednich odnośników, to adres URL twojego własnego typu treści będzie najprawdopodobniej wyglądał mniej więcej tak:

http://example.com/movies

Jeśli nie korzystasz z bezpośrednich odnośników przyjaznych dla SEO, Twój adres URL typu treści będzie wyglądał mniej więcej tak:

http://example.com/?post_type=movies

Nie zapomnij zastąpić „example.com” własną nazwą domeny, a „movies” nazwą twojego niestandardowego typu treści.

Zapisz menu, a następnie przejdź na stronę frontową twojej witryny internetowej. Zobaczysz dodany nowy utwórz menu, a po jego kliknięciu zostanie wyświetlona strona archiwum twojego konfiguratora typu treści przy użyciu pliku szablonu archive.php w twoim motywie.

Preview of Custom Post Type Menu Item

Tworzenie szablonów własnych typów treści

Jeśli nie podoba ci się wygląd strony archiwum dla twojego niestandardowego typu treści, możesz użyć dedykowanego szablonu dla archiwów niestandardowych typów treści.

Wszystko, co musisz zrobić, to utworzyć nowy plik w katalogu twojego motywu i nazwać go archive-movies.php. Upewnij się, że zastąpiłeś „movies” nazwą twojego własnego typu treści.

Aby rozpocząć, możesz skopiować treść pliku archive.php twojego motywu do szablonu archive-movies. php, a następnie zmodyfikować go do swoich potrzeb.

Teraz za każdym razem, gdy dostępna jest strona archiwum dla twojego własnego typu treści, ten szablon zostanie użyty do jej wyświetlenia.

Podobnie, możesz również utworzyć własny szablon dla wyświetlania pojedynczego wpisu dla twojego typu treści. Aby to zrobić, musisz utworzyć plik single-movies. php w katalogu twojego motywu. Nie zapomnij zastąpić „movies” nazwą twojego własnego typu treści.

Możesz zacząć od skopiowania treści szablonu single.php twojego motywu do szablonu single-movies. php, a następnie zacząć modyfikować go do swoich potrzeb.

Aby dowiedzieć się więcej, zapoznaj się z naszym przewodnikiem na temat tworzenia własnych szablonów pojedynczych wpisów w WordPress.

Wyświetlanie własnych typów treści na stronie głównej

Jedną z zalet korzystania z niestandardowych typów treści jest to, że oddzielają one twoje niestandardowe typy treści od zwykłych wpisów. Jeśli jednak chcesz, możesz wyświetlać niestandardowe typy treści na głównej stronie twojej witryny internetowej.

Wystarczy dodać ten kod jako nowy fragment kodu za pomocą darmowej wtyczki WPCode. Szczegółowe instrukcje znajdują się w sekcji tego artykułu dotyczącej ręcznego dodawania kodu.

add_action( 'pre_get_posts', 'add_my_post_types_to_query' );
 
function add_my_post_types_to_query( $query ) {
    if ( is_home() && $query->is_main_query() )
        $query->set( 'post_type', array( 'post', 'movies' ) );
    return $query;
}

Nie zapomnij zastąpić „movies” twoim własnym typem treści.

Zapytania do własnych typów treści

Jeśli jesteś zaznajomiony z kodowaniem i chciałbyś uruchamiać zapytania w pętli w twoim szablonie, oto jak to zrobić. Poprzez zapytanie do bazy danych można pobrać elementy z własnego typu treści.

Będziesz musiał skopiować poniższy fragment kodu do szablonu, w którym chcesz wyświetlić niestandardowy typ treści.

<?php 
$args = array( 'post_type' => 'movies', 'posts_per_page' => 10 );
$the_query = new WP_Query( $args ); 
?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class="entry-content">
<?php the_content(); ?> 
</div>
<?php endwhile;
wp_reset_postdata(); ?>
<?php else:  ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>

Ten kod definiuje typ treści wpisu i liczbę wpisów na stronę w argumentach dla naszej nowej klasy WP_Query. Następnie uruchamia zapytanie, pobiera wpisy i wyświetla je wewnątrz pętli.

Wyświetlanie własnych typów treści w widżetach

Zauważysz, że w WordPressie istnieje domyślny widżet do wyświetlania ostatnich wpisów, ale nie pozwala on na wybranie własnego typu treści.

Co jeśli chciałbyś wyświetlić najnowsze wpisy z Twojego nowo utworzonego typu treści w widżecie? Jest na to prosty sposób.

Pierwszą rzeczą, którą musisz zrobić, to zainstalować i włączyć wtyczkę Custom Post Type Widgets. Aby uzyskać więcej informacji, zobacz nasz przewodnik krok po kroku, jak zainstalować wtyczkę WordPress.

Po włączaniu wystarczy przejść do Wygląd ” Widżety i przeciągnąć widżet „Ostatnie wpisy (własny typ treści)” na panel boczny.

Recent Custom Post Type Widget

Ten widżet umożliwia wyświetlanie ostatnich wpisów z dowolnego typu treści. Musisz wybrać swój własny typ treści z listy rozwijanej „Typ wpisu” i wybrać żądane opcje.

Następnie kliknij przycisk „Aktualizuj” u góry ekranu i przejdź na twoją witrynę internetową, aby zobaczyć widżet w działaniu.

Preview of Recent Custom Post Type Widget

Wtyczka udostępnia również konfigurowalne widżety typu treści, które wyświetlają archiwa, kalendarz, kategorie, ostatnie komentarze, wyszukiwanie i chmurę tagów.

Custom Post Type Archives Widget

Mamy nadzieję, że ten poradnik pomógł ci nauczyć się tworzyć własne typy treści w WordPress. Możesz również dowiedzieć się, jak zwiększyć ruch na twoim blogu lub zapoznać się z naszą listą typowych błędów WordPressa i sposobów ich poprawki.

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

131 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. R Davies says

    You have a syntax error in your second (more detailed) example, code does not work in latest WordPress 7.4.3

    ) Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'custom_post_type’ not found or invalid function name

    Any chance of an update / correction?

    • Robert Stuart says

      On line 31? Yes, that’s normal PHP code.
      „The comma after the last array element is optional and can be omitted. This is usually done for single-line arrays, i.e. array(1, 2) is preferred over array(1, 2, ). For multi-line arrays on the other hand the trailing comma is commonly used, as it allows easier addition of new elements at the end.”

  3. Arias says

    Hello, I have been having problems with this plugin.

    It has disabled the option to create categories and tags,
    I have been looking for an example to place them manually but I still have not found anything.

    I am trying to undo if with this method I can fix the problem but I would greatly appreciate your help.

    • stormonster says

      In your $args array, on the 'taxonomies’ index, add 'category’ and 'post_tag’.
      That should do the trick.

    • Ilija says

      This is why I use my own CMS where I can create new post types in a fraction of a second directly through cms itself. Without any coding, unfortunately big agencies want WordPress developers and have to learn it, seems so complicated..

  4. Sarah A says

    Hi, i’ve succeded to display group of CPT with a specific design in a pop-up when you click on a image like the first one But it opens a new page and when you click out of the pop-up to quit you don’t return to the homepage, and i don’t want that. I want all on the homepage.

    I’ve put the code of the CPT to display as the pop-up on „single-chg_projet.php” and open and close the pop-up with javascript. I’ve already tried to put all the code of single-chg_projet.php on the index, but it display nothing. Or i may be failed somewhere. Please help me. Thanks

  5. Ghulam Mustafa says

    Hi,

    Thanks for the great code. Just a minor correction to the code. The endwhile; statement is missing before else: statement in the Querying Custom Post Types section =)

    • Tony Peterson says

      THIS! Please update your code to reflect this syntax error as it caused me a bit of heartache until I found Ghulam’s comment. It’s working now.

  6. david ben oren says

    how do i clone a post type which has a speicifc table in it, i need to create a seperate post type for other tables.

  7. Megan says

    I’ve downloaded the plugin and want to add two custom post types. 1. Fanfiction for all of my writings and 2. Fanart for all of my art.

    For Fanfiction – I want the ability to link chapters together into a story and be able to upload chapters to a story as I write them.

    For Fanart – I’d like to have the focus be on an image (obviously) with a description underneath it

    Is this article what I need or this something completely different?

    Thanks,
    Megan

  8. Zubair Abbas says

    Hi,

    I simply copied the code to my site’s functions.php. The new post type is visible in the dashboard but when I try to see a post after publishing it, a blank page appears. Later I realised that even the default posts are not opening.

    When I remove the code from functions.php everything works fine again.

    Please help :(

    Thanks,

    Zubair Abbas

    • Jouke Nienhuis says

      If you see a blank page, it often means that you forgot a character. The fact that you see the posts if you delete your custom code, confirms that you have a typo. Check for semi-colons ” ; ” and the opening and closing brackets.
      To see exactly where you made a mistake, you could edit the wp-config file. Look for ERROR REPORTING and set this value to true. After that test again and there you get an error and a line with the omission.

  9. Alex says

    I have created the CPT and is working beautifully, but Google cannot find it even after updating sitemaps, using SEO plugins or fetching on Google Webmaster Tools. Any thoughts on why is that happening?

    • WPBeginner Support says

      It takes Google sometime to start showing new content in search results. Just to be on safe side, check your SEO plugin settings to make sure you are not blocking indexing of your CPTs or CPT archive pages.

      Administrator

  10. Amunet says

    Creating Custom Post Type can be easy especially with a plugin. The real trick is to show them on the page. Usually you need quite advanced custom development or theme specific plugins like that for Avada.

    Unfortunately there is no universal way to display CPT in WordPress.

    • Jouke Nienhuis says

      Like the author said, but I will repeat the answer.
      In a nutshell create a link in your navigation menu
      Advanced answer in a nutshell: create an archive page and a single page

  11. Chuck says

    Great article. How can you modify single post CPT post info based on the custom taxonomy? For instance:

    Date | Author | Series | Book | Topic

    This is easy to write but I want to figure out how to display a modified post info if one the missing taxonomy of Series, like:

    Date | Author | Book | Topic

    Otherwise the default post info displays as:

    Date | Author | | Book | Topic

  12. Moazam Ali says

    Dear,

    Thanks for the post. I want to make a library of ebooks and want to use custom post type and portfolio to show the thumbnails of books in front end. Can you please guide how i can do that?

  13. Sharon Wallace says

    Hello All,
    This is a great plugin. I’m trying to get the taxonomy to show on the page. I created one called Presenters. You can see it here.

    How can I make that happen?

    Thank you

  14. Dave S. says

    Hi,
    I have created a form (using ArForms plugin) which I need it to be turned into a Post-Type. Do you have any suggestions as to how to accomplish this please?

    Thank you.

  15. Mark Greenway says

    Thanks for this, exactly what I needed to know to help me get to grips with custom post types.

    Mark.

  16. Graham says

    Thank you! Just what I was looking for. It’s amazing how many times I find wordpress work-arounds and then forget how I do them and keep having to come back.

    Much appreciated!

  17. MELAS says

    Dear,

    I don’t have a lot of knowledge about coding. How can I see on the specific page theses Custom post types and taxonomies?

    Thanks in advance!
    MELAS

  18. Vera says

    Hello,
    Thank yo for this beautiful tutorial.
    I have gone and done everything as you said.
    Two things I do not understand:
    1.
    You have specified taxonomy „genre”. Where is that set up? What if I want to make the actual genres underneath that? How do I make them? Where do I see them?
    2.
    I would like to make the menu links to the „Movies” and underneath – sublinks to „Genres”. I can see the „Movies” in the Menu section, each post, like pages. Don’t really need that, but I won’t mind. How to see the „Genres” in there?
    Thank you,
    Vera

    • WPBeginner Support says

      Seems like you have successfully created your custom post type, i.e. Movies. The next step is to create custom taxonomy, Genres. A taxonomy is a way to sort content in WordPress. Categories and tags are two default taxonomies that come built in with WordPress and are by default associated with 'Posts’. Please see our tutorial on how to create custom taxonomies in WordPress. Follow the instructions in that tutorial to create your custom taxonomy Genres and associate it with the post type movies. Your custom taxonomy will appear below the Movies menu in WordPress admin area.

      Administrator

  19. Hamed 3daJoo says

    I do All Of This but when i want to public a post by this post type my post types redirects to main page (i Just coppied your code without any changes)
    for example i write this post with Movies post type

    please help me ilove post type but i can’t use it correctly

  20. antonio says

    hi i’m trying to add the snippet of code fort the post type movie… i copied it into functions.php but when i refresh the page nothing is shown. i’m using the twenty fourteen theme… what can be wrong?

  21. Fahd says

    Hi, Custom post types on my wordpress website were working fine from last 2 years. But what happend is when I change the title of post and click update it save other changes too. But if I keep the post title same and make changes in the post, it doesn’t save it. Any recommendations please?

  22. Arup Ghosh says

    I want to create a custom post type coupons with reveal coupon option and the code will link to the store url, can you tell me how can I do that. I don’t have much knowledge about coding.

    • Jouke Nienhuis says

      it is one of the arguments ($args) when defining the custom post type.
      Add 'menu-icon’ => 'dashicons-cart’ to the $args list.
      WordPress uses built-in dashicons, but you can also use your own icons.
      More information on this link:

  23. Johan says

    Hi, the excerpt and the custom fields data is not displaying in the front end… any idea of why this is happening?

  24. Bill Querry says

    I forgot to mention, prreferably via code for my functions.php file since that’s where the curernet CPT are defined.

  25. Bill Querry says

    I am looking at a way to add categories to some existing custom post types. Anyone able to point me in the right direction?

    • Jouke Nienhuis says

      You can add new taxonomies to an existing Post Type (custom or not) just by filling in the right post-type when you write the function to create it. Category is just a taxonomy name which includes all posts with a category.
      If you want to make a new category, just click on category on the menu and create a new one.
      Examples of categories are Boats if your post is about boats or planes if your post is about planes. More categories is also possible, just select or add them in the right sidecolumn when you are writing your new post or editing one.
      A post type is not attached or linked to a specific category, a post is.

  26. Robey Lawrence says

    I just tried to use the snippet under
    Querying Custom Post Types,
    and figured out it needs a before the reset.

  27. YassinZ says

    Thanks for the clean handy article
    I just want to use the text editor in the custom post
    so that I can use html tags,

  28. Yassin says

    thanks for such an awesome clear tutorial
    but I’m faceing a problem in displaying the CPT I’m using SEO friendly permalinks when I direct to may website/movies the CPT are duplicated

  29. Aris Giavris says

    Very useful! Thank you.

    I would like to add to every tag of my posts one of the following signs: +, -, +/-. May I?

    If so, then I would like to have the choice to represent the signed tags as follow: all the +tags, all the -tags, all the +/-tags.

    I think I am questioning a lot of things.

  30. Placid says

    Hi,

    I am having a hard time implementing a custom post type correctly. I have searched for a solution for a long time but couldn’t find any. Here’s what I did:

    1. Freshly installed WordPress in my local wamp server (enabled apache rewrite_module first).

    2. Using default theme (twenty fourteen). No plugins installed.

    3. Changed permalinks to „Post name”

    4. In the plugins folder, created a folder named pr_custom_posts and inside that, created a file named pr_custom_posts.php. In the file I created a custom post type. The code is as follows:

    register_post_type();

    //flush_rewrite_rules();

    }

    public function register_post_type () {

    $args = array(

    'labels’ => array (

    'name’ => 'Movies’,

    'singular_name’ => 'Movie’,

    'add_new’ => 'Add New Movie’,

    'add_new_item’ => 'Add New Movie’,

    'edit_item’ => 'Edit Movie’,

    'new_item’ => 'Add New Movie’,

    'view_item’ => 'View Movie’,

    'search_items’ => 'Search Movies’,

    'not_found’ => 'No Movies Found’,

    'not_found_in_trash’ => 'No Movies Found in Trash’

    ),

    'query_var’ => 'movies’,

    'rewrite’ => array (

    'slug’ => 'movies/’,

    'with_front’=> false

    ),

    'public’ => true,

    'publicly_queryable’ => true,

    'has_archive’ => true,

    'menu_position’ => 10,

    'menu_icon’ => admin_url().’/images/media-button-video.gif’,

    'supports’ => array (

    'title’,

    'thumbnail’,

    'editor’

    )

    );

    register_post_type(’jw_movie’, $args);

    //flush_rewrite_rules();

    }

    }

    add_action(’init’, function() {

    new PR_Movies_Custom_Post();

    //flush_rewrite_rules();

    });

    ?>

    The Good Thing: The CPT is showing in my admin panel and I can add and view movies there.

    THE PROBLEM: I cannot preview the movies in the front end (By clicking the „view” in the CPT in admin panel). It shows in the front end only when I set permalink to default (http://localhost/wp02/?p=123).

    What I have tried:

    1. Go to permalink, keep permalink settings to „Post name” and Save changes.

    2. Use flush_rewrite_rules() in several places (one by one) in my code. Please see the commented out parts in the code above.

    3. Created a menu item as:

    URL: http://localhost/wp02/movies

    Navigation Label: Movies

    This creates a menu item in the front end but shows „Not Found” when „Movies” link is clicked.

    This is driving me crazy. Can anyone please help on this? I would really appreciate.

    • kikilin says

      I was going crazy too with the same „Not Found” issue, until I tried this: go to Settings > Permalinks and then re-save your settings. I had switched my setting to Default, and then changed it to Post Name (for my project’s needs). After that, links were working as expected.

  31. ceslava says

    Another easy way is just duplicate the archive.php and rename it to archive-movies.php and the same for single.php -> single-movies.php

    Then you can make tweaks to the php files for your theme.

    Best regards

  32. Mik says

    Hi, I’ve been reading and following your posts for so long now, you are amazing, and targeting those missing stuff of beginners… Thank you.

  33. Davide De Maestri says

    This plugin should be okay, but after every upgrade they’ve got some bug. Due to exporting field, or while migrating from local to remote etc… So It’s better to hand-write the code and put into functions.php :D

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ę.