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

WordPressでカスタム投稿タイプを作成する方法

カスタム投稿タイプを使えば、標準的な投稿やページの枠を超えることができます。サイト固有のニーズに合わせた多様なコンテンツタイプを作成できます。

例えば、カスタム投稿タイプを使えば、WordPressサイトをシンプルなブログプラットフォームから堅牢なコンテンツ管理システム(CMS)に変身させることができます。

そのため、私たちは自分のサイト全体でいくつかのカスタム投稿タイプを使用しています。このガイドでは、WordPressでカスタム投稿タイプを簡単に作成する方法を紹介します。

How to Create Custom Post Types in WordPress

WordPressのカスタム投稿タイプとは?

WordPressサイトでは、投稿タイプはWordPressの異なるコンテンツタイプを区別するために使用されます。投稿とページはどちらも投稿タイプですが、異なる目的で作られています。

WordPressの初期設定では、いくつかの投稿タイプが用意されています:

  • 投稿
  • ページ
  • 添付ファイル
  • リビジョン
  • ナビメニュー

とはいえ、カスタム投稿タイプと呼ばれる独自の投稿タイプを作成することもできる。これらは、標準の投稿やページとは異なるフォーマットのコンテンツを作成する際に便利です。

あなたが映画のレビューサイトを運営しているとしよう。その場合、おそらく「映画レビュー」投稿タイプを作成したいと思うでしょう。また、ポートフォリオ、お客様の声、製品などのカスタム投稿タイプを作成することもできます。

さらに、カスタム投稿タイプは異なるカスタムフィールドと独自のカスタムカテゴリー構造を持つことができます。

例えば、WPBeginnerでは、お得情報や用語集のセクションにカスタム投稿タイプを使用し、日々のブログ記事とは区切れるようにしています。これは、サイトのコンテンツをよりよく整理するのに役立ちます。

WordPressサイトのデータを保存するために、多くの人気のあるWordPressプラグインがカスタム投稿タイプを使用しています。以下はカスタム投稿タイプを使用するトッププラグインです:

  • WooCommerce、オンラインストアに「product」投稿タイプを追加
  • WPFormsは、すべてのフォームを保存するために’wpforms’投稿タイプを作成します。
  • MemberPress、カスタム投稿タイプ「memberpressproduct」を追加

動画チュートリアル

Subscribe to WPBeginner

文章での説明がお望みなら、このまま読み進めてください。

カスタム投稿タイプを作成する必要がありますか?

WordPressサイトでカスタム投稿タイプの作成を始める前に、ニーズを評価することが重要です。多くの場合、通常の投稿やページで同じ結果を得ることができます。

あなたのサイトにカスタム投稿タイプが必要かどうかわからない場合は、WordPressでカスタム投稿タイプやタクソノミーが必要な場合についてのガイドを参照してください。

このことを念頭に置いて、WordPressでカスタム投稿タイプを簡単に作成する方法を見てみましょう。2つの方法を紹介し、WordPressサイトにカスタム投稿タイプを表示する方法もいくつか取り上げます:

準備はいいかい?始めよう

WPCodeを使ってカスタム投稿タイプを手動で作成する

カスタム投稿タイプを作成するには、テーマのfunctions.phpファイルにコードを追加する必要があります。しかし、ちょっとしたミスでもサイトを壊してしまう可能性があるため、上級ユーザー以外にはお勧めしません。また、テーマを更新するとコードは消えてしまいます。

その代わりに、WordPressサイトにカスタムコードを追加する最も簡単で安全な方法であるWPCodeを使用します。

WPCodeを使えば、カスタム・スニペットを追加し、ビルトインされた設定済みのコードライブラリから多くの機能を有効化することができます。言い換えれば、インストール済みの専用プラグインや個別プラグインを置き換えることができます。

まず、無料のWPCodeプラグインをインストールし、有効化する必要があります。詳しい手順については、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。

有効化したら、WordPressダッシュボードからCode Snippets “ Add Snippetに移動します。次に、「カスタムコードを追加(新規スニペット)」にマウスオーバーし、「スニペットを使用」をクリックします。

Add custom code in WPCode with new snippet

カスタムスニペットの作成」画面が開きます。

これで、コード・スニペットのタイトルを作成し、スイッチを「有効化」に切り替えることができる。

Creating a custom code snippet using WPCode

その後、以下のコードを「コードプレビュー」エリアに貼り付けるだけです。このコードは、管理サイドバーに表示され、どのテーマでも動作する「Movies」という基本的なカスタム投稿タイプを作成します。

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

基本的なカスタム投稿タイプが欲しいだけなら、moviesと Moviesを自分のCPTスラッグと名前で置き換えて、「更新」ボタンをクリックするだけです。

しかし、カスタム投稿タイプのオプションをさらに増やしたい場合は、上記のコードではなく、以下のコードを使用する必要があります。

以下のコードでは、’Movies’カスタム投稿タイプに、リビジョン、アイキャッチ画像、カスタムフィールドのサポートや、カスタム投稿タイプと’genres’というカスタムタクソノミーの関連付けなど、さらに多くのオプションを追加しています。

注: これら2つのスニペットを組み合わせないでください。WordPressは、両方のスニペットが同じカスタム投稿タイプを登録するため、エラーを出します。登録したい投稿タイプを追加するごとに、WPCodeを使って新規スニペットを作成することをお勧めします。

/*
* 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 );

階層化の値をfalseに設定している部分にお気づきでしょうか。カスタム投稿タイプを投稿ではなくページのように動作させたい場合は、この値をtrueに設定します。

もう一つ注目すべき点は、twentytwentyone 文字列が繰り返し使われていることで、これは「テキストドメイン」と呼ばれています。もしあなたのテーマが翻訳に対応していて、カスタム投稿タイプを翻訳させたいのであれば、テーマが使用するテキストドメインについて言及する必要があります。

テーマのテキストドメインは、テーマディレクトリのstyle.cssファイル内、または管理画面の外観 “ テーマファイルエディターで見つけることができます。テキストドメインはファイルのヘッダーに記載されています。

Finding the textdomain for a theme

twentytwentyoneを自分のテーマの「テキストドメイン」に置き換えるだけです。

変更に満足したら、「更新」ボタンをクリックするだけで、あとはWPCodeが処理します。

プラグインでカスタム投稿タイプを作成する

WordPressでカスタム投稿タイプを作成するもうひとつの簡単な方法は、プラグインを使うことだ。この方法は安全で超簡単なので、初心者におすすめです。

最初に行う必要があるのは、カスタム投稿タイプUIプラグインをインストールして有効化することです。詳しくは、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。

有効化したら、CPT UI ” Add / Edit Post Typesで新規カスタム投稿タイプを作成する必要があります。新規投稿タイプの追加」タブに移動します。

Create a New Custom Post Type With a Plugin

このエリアでは、’movies’のようなカスタム投稿タイプのスラッグを指定する必要があります。このスラッグはURLやWordPressのクエリーで使用されるため、アルファベットと数字しか使用できません。

スラッグフィールドの下に、カスタム投稿タイプの複数形と単数形の名前を入力する必要があります。

お望みであれば、「選択したラベルに基づいて追加ラベルを入力する」というリンクをクリックしてください。これにより、下の追加ラベルフィールドが自動的に入力され、通常は時間を節約することができます。

追加ラベル」セクションまでスクロールダウンできます。リンクをクリックしなかった場合は、投稿タイプの説明とラベルの変更が必要です。

Scroll Down to the Additional Labels Section

これらのラベルは、特定の投稿タイプのコンテンツを管理する際にWordPressユーザーインターフェース全体で使用されます。

次の投稿タイプの設定です。ここから投稿タイプに様々な属性を設定することができます。各オプションには、その機能を説明する簡単な説明がついています。

Scroll Down to the Post Type Settings Section

例えば、投稿タイプをページのように階層化しないようにしたり、時系列投稿を逆順に並べ替えたりすることができます。

一般設定の下に、この投稿タイプがサポートする編集機能を選択するオプションがあります。設定したいオプションにチェックを入れてください。

Check the Supports Options You Want to Include

最後に「投稿タイプを追加」ボタンをクリックして保存し、カスタム投稿タイプを作成します。

以上でカスタム投稿タイプの作成は完了です!これでコンテンツを追加していくことができます。

カスタム投稿タイプをサイトに表示する

WordPressには、カスタム投稿タイプを表示するためのサポートがビルトインされています。新しいカスタム投稿タイプにいくつかの項目を追加したら、それらをサイトに表示しましょう。

使える方法はいくつかあり、それぞれに利点がある。

初期設定アーカイブテンプレートを使用したカスタム投稿タイプの表示

まず、外観 ” メニューからカスタムリンクをメニューに追加します。このカスタムリンクはあなたのカスタム投稿タイプへのリンクです。

Add a Custom Link to Your Menu

SEOフレンドリーなパーマリンクを使用している場合、カスタム投稿タイプのURLはこのようになる可能性が高いです:

http://example.com/movies

SEOフレンドリーなパーマリンクを使用していない場合、カスタム投稿タイプのURLは次のようになります:

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

‘example.com’を自分のドメイン名に、’movies’をカスタム投稿タイプ名に置き換えることをお忘れなく。

メニューを保存し、あなたのサイトのフロントエンドにアクセスしてください。追加した新しいメニュー項目が表示され、それをクリックすると、テーマのarchive.phpテンプレートファイルを使ってカスタム投稿タイプのアーカイブページが表示されます。

Preview of Custom Post Type Menu Item

カスタム投稿タイプテンプレートの作成

カスタム投稿タイプのアーカイブページの外観が気に入らない場合は、カスタム投稿タイプのアーカイブ専用のテンプレートを使うことができます。

必要なことは、テーマディレクトリに新しいファイルを作成し、archive-movies.phpという名前にすることだけです。本当に〜してもよいですか?’movies’をあなたのカスタム投稿タイプの名前に置き換えてください。

はじめに、テーマのarchive.phpファイルのコンテンツをarchive-movies.phpテンプレートにコピーし、必要に応じて変更してください。

これで、カスタム投稿タイプのアーカイブページがアクセスされるたびに、このテンプレートが使用されて表示されるようになります。

同様に、投稿タイプの個別表示用のカスタムテンプレートを作成することができます。そのためには、テーマディレクトリにsingle-movies.phpを作成する必要があります。movies’をカスタム投稿タイプの名前に置き換えることを忘れないでください。

テーマのsingle.phpテンプレートのコンテンツをsingle-movies.phpテンプレートにコピーし、あなたのニーズに合うように修正することで始めることができます。

さらに詳しく知りたい方は、WordPressでカスタム個別投稿テンプレートを作成する方法をご覧ください。

カスタム投稿タイプをフロントページに表示する

カスタム投稿タイプを使用する利点のひとつは、カスタムコンテンツタイプを通常の投稿から区切ることができることです。しかし、カスタム投稿タイプをサイトのトップページに表示することもできます。

無料のWPCodeプラグインを使って、このコードを新しいスニペットとして追加するだけです。詳しい手順については、この投稿のコードを手動で追加するセクションをご覧ください。

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;
}

movies」をカスタム投稿タイプに置き換えることをお忘れなく。

カスタム投稿タイプのクエリー

もしあなたがコーディングに慣れていて、テンプレートの中でループクエリーを実行したいのであれば、その方法を紹介しましょう。データベースにクエリーすることで、カスタム投稿タイプから項目を取得することができます。

カスタム投稿タイプを表示したいテンプレートに以下のコードスニペットをコピーする必要があります。

<?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; ?>

このコードでは、新しいWP_Queryクラスの引数に投稿タイプとページあたりの投稿数を定義しています。そしてクエリーを実行し、投稿を取得し、ループの中に表示します。

カスタム投稿タイプをウィジェットに表示する

WordPressには初期設定で最近の投稿を表示するウィジェットがありますが、カスタマイザー投稿タイプを選択する権限がありません。

新しく作成した投稿タイプの最新エントリーをウィジェットに表示したいとしたらどうしますか?幸いなことに、これを行う簡単な方法があります。

最初に行う必要があるのは、カスタム投稿タイプウィジェットプラグインをインストールして有効化することです。詳しくは、WordPressプラグインのインストール方法のステップバイステップガイドをご覧ください。

有効化したら、外観 ” ウィジェットにアクセスし、「最近の投稿(カスタム投稿タイプ)」ウィジェットをサイドバーにドラッグ&ドロップするだけです。

Recent Custom Post Type Widget

このウィジェットは、任意の投稿タイプからの最近の投稿を表示することができます。カスタム投稿タイプを’投稿タイプ’ドロップダウンから選択し、必要なオプションを選択する必要があります。

その後、画面上部の「更新」ボタンをクリックし、あなたのサイトにアクセスしてウィジェットの動作を確認してください。

Preview of Recent Custom Post Type Widget

プラグインはまた、アーカイブ、カレンダー、カテゴリー、最近のコメント、検索、タグクラウドを表示するカスタム投稿タイプウィジェットを提供します。

ですから、ご自由にお選びください。

Custom Post Type Archives Widget

このチュートリアルで、WordPressでカスタム投稿タイプを作成する方法を学んでいただけたなら幸いです。次に、WordPressでカスタムアーカイブページを作成する方法や、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.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

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.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

130件のコメント返信を残す

  1. Anna

    Good stuff! TY!

    Is it possible to select a category for the CPT or create it’s own category list?
    In your example of ‘Movies’ – select which category – Family, Drama, Action, etc?

  2. Michelle

    Hi! How can I set the query to only display custom post types by category on the category page? Currently, my query pulls ALL the post type, and I can’t seem to get just current category to display. thanks

  3. hussain

    I have used this method which you explained above, but after creating a new menu, menu has created successfully created but when I click my menu it shows me error that “This page could not foun”

    • WPBeginner Support

      It sounds like you would need to check and resave your permalinks to be safe. The other thing you could do would be to ensure you have a custom post type published for be found on the page.

      管理者

  4. Jarkko

    So I used Code Snippets and the longer code but the features after ‘supports’ are not visible anywhere? Shouldn’t they be visible when clicking “Add new”… How do I insert a new movie and the information of it… I don’t get it.

    • WPBeginner Support

      There should be a new section in your admin area where you can add new posts of your custom post type similar to how you add posts or pages.

      管理者

  5. Hafeez Ulllah

    How cn display custom post type and where the code of display will be pasted

  6. Johan

    Seems to work perfectly, except for one thing: My theme is showing featured images on the pages. But when I use the CPT the images are never show, whatever I do. Any idea why?

    • WPBeginner Support

      Your theme likely has a different template being used, if you reach out to your theme’s support they should be able to assist.

      管理者

  7. D Hebing

    I tried many things with the code above, even compare it with the twintytwintyone theme of wordpress. But the post types don’t appear in the backend in the post editor.

  8. Aurelien

    5 years on, still useful! Thank you guys

    • WPBeginner Support

      Glad you’ve found our content helpful :)

      管理者

  9. Max

    Thanks very useful.

    What do you think? In such cases from view of site speed it is better to install the plugin or write the code you provide?

    • WPBeginner Support

      There shouldn’t be a difference in speed with either method being used.

      管理者

  10. Marshal Tudu

    Thanks a lot for the help. I am trying to create a movie database on my website
    Your post really helped me.

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  11. Harsha

    How to migrate old posts to the new post type?

  12. Leslie Campos

    Great article! I tried to add two different post types on top of blog posts but the second add_action( ‘init’, ‘create_posttype’ ); overwrote the first one. I don’t know php but am wondering if it is possible to create two different ones in the same functions.php file. I don’t know php so perhaps it’s the way I am writing it?

    • WPBeginner Support

      We would recommend using the plugin method to make the process easier. For a second post type with the code, you would need to copy from lines 4 to 17 and paste it on a new line below 17 then rename movies to a different name.

      管理者

  13. Girish Sahu

    Really loved the article, Simple explained and was really of great help.
    I wanted to mix custom posts and blogs post in a single page and was able to do so after reading the article.

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  14. Rafiozoo

    Great recipe! Thank you!
    One question:
    ‘exclude_from_search’ => true
    should exclude my new custom posts from search results, I believe. Why does not work?

  15. snelson

    Is there a way to display the new post type without the new slug? example. Default is mysite.com/newposttype/newpage

    I would like

    mysite.com/newpage/

  16. Yogesh

    Hi,

    I tried to use the manual approach using the simple code youve mentioned for creating a custom post type, but unfortunatley the posts dont show up (page not found error). The post permalink structure looks fine but the posts dont get displayed.

    • WPBeginner Support

      You may want to clear the cache for your site and resave your permalinks to clear that issue.

      管理者

  17. rajni

    hey thank you so much it working fine but i want to show post type on a page where only categories will show and when click on category post listed under this category will open can you please suggest me how to do that.thank you in advance

    • WPBeginner Support

      For what it sounds like you’re wanting, you would want to ensure that categories are enabled for your custom post type and you could then add the category link in your menu for the page listing them how you want

      管理者

  18. G'will Chijioke

    Hi, i am a newbie developer trying to create a custom post type.

    All is good, just 1 huge problem.

    I want to display the taxonomies that i created and linked to the post (tags and categories ) on the post itself.

    i want to show it on my breadcrumbs as well.

    pls it would mean d world if you helped me out.

    Thanks in advance.

  19. rana ritesh singh

    nice post

    • WPBeginner Support

      Thank you :)

      管理者

  20. Haibatan

    I want a CPT for my english posts, my site is in an RTL language, is it possible?

  21. RZKY

    One question, in the default WP post dashboard, there’s a filter by categories feature on top of the list.

    So I already link my custom post type with a custom taxonomy, but the filter menu is not showing (A portfolio post type, and the portfolio category custom taxonomy). Is there any settings i need to enable? I’m doing this from inside my functions.php

  22. Feras

    Hi there, So “Custome post type UI” is not compatible with my wp version! is there any useful plugin that I CAN USE

  23. Oscar

    Hi!. I want to ask you something.
    I created a Custom Post Types.
    But when i create a post, there isnt the options “Page Attributes”, to choose the template and order the posts.
    How can I get it?

    Thanks in advanced.

    • Syed Furqan Ali

      Hi Oscar,

      If you are using the CPT UI plugin to create custom post types, you’ll need to ensure that you enable the “Page Attributes” option under the “Supports” section. This will allow you to assign parent pages to your custom post types. Similarly, if you are using custom code to create custom post types, make sure to include the “page-attributes” in the supports parameter to enable this feature.

  24. vinay

    post is created but custom fields are not showing why?/

  25. Kevin

    I’ve created a CPT with unique archive page, but I would like to be able to show a featured image for the archive page (not from the first post) but as the archive page doesn’t exist in “pages” there is no way to add the featured image

    how would this be achieved ?

  26. Juno

    Is it possible to access these custom post types via WP REST API? If so how? (for GET, POST, etc.

  27. Mottaqi

    I want a custom post type page that will be open from archive.php page with all it’s posts and under this page I want to place it’s all posts as sub menu items. But when I create a custom link page and place it’s sub menu items as I describe, sum menu url will open but my main archive page , I mean that post type page url will disappear.
    Plz I want to access both pages.. But how…?

  28. Steven Denger

    Will adding Custom Post Types allow me to have another posting page for these? My regular Home page has products running through that. I need an additonal posting page for product reviews. When I create a review, I need it to post on another feature page. Is this what tis is for?

  29. utkarsh

    nevermind that last question i asked read your whole article and got it

  30. utkarsh

    Hey what does ‘twentythirteen’ in
    “_x(‘Movies’, ‘Post Type General Name’, ‘twentythirteen’)”

    • Jim

      Also notice repeated usage of twentythirteen, this is called text domain. If your theme is translation ready and you want your custom post types to be translated, then you will need to mention text domain used by your theme. You can find your theme’s text domain inside style.css file in your theme directory. Text domain will be mentioned in the header of the file.

  31. Angela

    Hello and thank you for this post (and several others).

    I have created the new custom post type of “stories” and its showing up in my WP dashboard. I can create a new post but when I try to open the Beaver Builder page builder to build the post, it won’t open and goes to “Sorry, this page doesn’t exist” error page.

    Can you help?

    Thank you,
    Angela

    • WPBeginner Support

      Hi Angela,

      First, you should try updating your permalinks. Simply visit Settings » Permalinks and then click on the save changes button without changing anything.

      If this doesn’t resolve your issue, then contact plugin’s support.

      管理者

      • Angela

        Hi and thank you for your reply. I did what you suggested and it didn’t help. My plugin is created using the customer post type code above and is placed in a site-specific plugin, so I have no plugin support source from which to seek help other than you :)

        I deleted the site-specific plugin (which of course included the CPT code) and new posts and pages still won’t load using the Beaver Builder theme page builder function, but they will at least show the page with a large white bar loading endlessly. I deactivated Ultimate Add-ons for Beaver Builder plugin and new posts and pages will now load using page builder. I think there may have been a conflict between UABB plugin and the CPT plugin and now the conflict remains in UABB plugin.

        Any suggestions would be much appreciated. I also have put in a request to UABB. Maybe between the two of you, you could help resolve this issue and make note of this conflict for future reference.

  32. JonO

    Great site BTW, really really helpful so thanks for creating.

    I’m super stuck and have been reading tutorials all over the web and not found the answers I need.

    I want to create a user opt-in custom taxonomy (Let’s call it user_interests) that can be used to display a custom list of posts that are unique to that particular user.

    User will opt-in to user_interest tags/catergories/whatever during sign up or when editing profile.

    Then the WP loop should include these values to display posts

    Any ideas, help would be really appreciated, thanks.

  33. Jonathan

    How do I get my user/visitors to my site be able to enter information to a form, and have that submitted data be displayed on which ever page or location I like? I want to allow my users be able to submit complaints and have other users able to like/reply to the main complaint submitted.

    Am I able to do this with Custom Post Type?

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。