カスタム投稿タイプ/分類のURLにカテゴリベースを追加


23

WordPressでLMSタイプシステムを構築していますCustom Post types
ポストタイプが呼ばれているLessons(のスラグとcourses)、それが1持っているcustom taxonomyと呼ばれる(カテゴリ)courses

ドメインのURL構造は、現在次のように表示されます。

domain.com/courses/lesson-name

なりたい:

domain.com/courses/[course-name{category}]/lesson-name

または本質的に:

/[cpt]/%category%/%postname%/

これは、CPTs今制御しているプラグインです。

function rflms_post_type() {
    $labels = array(
        'name'                => _x( 'Lessons', 'Post Type General Name', 'text_domain' ),
        'singular_name'       => _x( 'Lesson', 'Post Type Singular Name', 'text_domain' ),
        'menu_name'           => __( 'Lessons', 'text_domain' ),
        'parent_item_colon'   => __( 'Parent Product:', 'text_domain' ),
        'all_items'           => __( 'All Lessons', 'text_domain' ),
        'view_item'           => __( 'View Lesson', 'text_domain' ),
        'add_new_item'        => __( 'Add New Lesson', 'text_domain' ),
        'add_new'             => __( 'New Lesson', 'text_domain' ),
        'edit_item'           => __( 'Edit Lesson', 'text_domain' ),
        'update_item'         => __( 'Update Lesson', 'text_domain' ),
        'search_items'        => __( 'Search Lessions', 'text_domain' ),
        'not_found'           => __( 'No Lessons Found', 'text_domain' ),
        'not_found_in_trash'  => __( 'No Lessons Found in Trash', 'text_domain' ),
    );

    $args = array(
        'label'               => __( 'Lessons', 'text_domain' ),
        'description'         => __( 'Referable Lessons', 'text_domain' ),
        'labels'              => $labels,
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'supports'        => array('premise-member-access', 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments'),
        'menu_position'       => 5,
        'menu_icon'           => null,
        'can_export'          => true,
        'has_archive'         => true,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'capability_type'     => 'post',
        'rewrite'                    => array('slug' => 'courses'),
    );

    register_post_type( 'lessons', $args );


// Hook into the 'init' action

}
add_action( 'init', 'rflms_post_type', 0 );

// Register Custom Taxonomy
function custom_taxonomy()  {
    $labels = array(
        'name'                       => _x( 'Courses', 'Taxonomy General Name', 'text_domain' ),
        'singular_name'              => _x( 'Course', 'Taxonomy Singular Name', 'text_domain' ),
        'menu_name'                  => __( 'Courses', 'text_domain' ),
        'all_items'                  => __( 'All Courses', 'text_domain' ),
        'parent_item'                => __( 'Parent Course', 'text_domain' ),
        'parent_item_colon'          => __( 'Parent Course:', 'text_domain' ),
        'new_item_name'              => __( 'New Course Name', 'text_domain' ),
        'add_new_item'               => __( 'Add New Course', 'text_domain' ),
        'edit_item'                  => __( 'Edit Course', 'text_domain' ),
        'update_item'                => __( 'Update Course', 'text_domain' ),
        'separate_items_with_commas' => __( 'Separate Courses with commas', 'text_domain' ),
        'search_items'               => __( 'Search Courses', 'text_domain' ),
        'add_or_remove_items'        => __( 'Add or Remove Courses', 'text_domain' ),
        'choose_from_most_used'      => __( 'Choose from Most Used courses', 'text_domain' ),
    );

    $args = array(
        'labels'                     => $labels,
        'hierarchical'               => true,
        'public'                     => true,
        'show_ui'                    => true,
        'show_admin_column'          => true,
        'show_in_nav_menus'          => true,
        'show_tagcloud'              => false,
        'rewrite'                    => array('slug' => 'courses'),
    );

    register_taxonomy( 'course', 'lessons', $args );
}

// Hook into the 'init' action
add_action( 'init', 'custom_taxonomy', 0 );

最近、私はこの問題に直面しています。解決しました![#188834] [1] [1]:wordpress.stackexchange.com/questions/94817/...
maheshwaghmare

溶液!(終わりのない調査の後)<br/> <br/> post_type_linkフィルターを修正する必要があります。詳細:wordpress.stackexchange.com/a/167992/33667
T.Todua

回答:


36

書き換えを変更して、コースクエリ変数を追加します。

'rewrite' => array('slug' => 'courses/%course%')

次に、フィルタリングpost_type_linkして、選択したコースをパーマリンクに挿入します。

function wpa_course_post_link( $post_link, $id = 0 ){
    $post = get_post($id);  
    if ( is_object( $post ) ){
        $terms = wp_get_object_terms( $post->ID, 'course' );
        if( $terms ){
            return str_replace( '%course%' , $terms[0]->slug , $post_link );
        }
    }
    return $post_link;  
}
add_filter( 'post_type_link', 'wpa_course_post_link', 1, 3 );

これを行うことができるカスタム投稿タイプパーマリンクのようなプラグインもあります。


ありがとう、迅速な回答に感謝します。これは完全に理にかなっています。私は興味がありますが、フィルターpost_type_linkをどこに挿入しますか 文書全体の最後に行くことはできますか?
ザックラッセル

私はそれを一番下に追加し、それは404のページです。
ザックラッセル

1
書き換えをフラッシュする必要がある場合は、パーマリンク設定ページにアクセスしてください。
ミロ

また、分類法と投稿タイプが同じスラッグを共有している可能性があることに注意してください。
ミロ

私が今いるところは、パーマリンクを正しくしているところですが、正しく実行されていません(ソフト404ingです)。これを正しく動作させるために私ができることに関する推奨事項はありますか?パーマリンクフラッシュの書き換えは行っていません。「保存」をクリックするだけで、ファイルが更新されます(nginxなので、nginx.confファイルで制御されます)
Zach Russell

1

うん!多くの研究の後、プラグインカスタムパーマリンクを入手しました。私の要件を満たしている-カスタムURLなど

  • カテゴリー用
  • 投稿用
  • カスタム投稿用
  • カスタム分類など

このようなカスタム投稿タイプ-投稿

ここに画像の説明を入力してください


1

解決策を得た!

カスタム投稿タイプの階層パーマリンクを作成するには、カスタム投稿タイプパーマリンク(https://wordpress.org/plugins/custom-post-type-permalinks/)プラグインをインストールします。

登録済みの投稿タイプを更新します。ヘルプセンターとして投稿タイプ名があります

function help_centre_post_type(){
    register_post_type('helpcentre', array( 
        'labels'            =>  array(
            'name'          =>      __('Help Center'),
            'singular_name' =>      __('Help Center'),
            'all_items'     =>      __('View Posts'),
            'add_new'       =>      __('New Post'),
            'add_new_item'  =>      __('New Help Center'),
            'edit_item'     =>      __('Edit Help Center'),
            'view_item'     =>      __('View Help Center'),
            'search_items'  =>      __('Search Help Center'),
            'no_found'      =>      __('No Help Center Post Found'),
            'not_found_in_trash' => __('No Help Center Post in Trash')
                                ),
        'public'            =>  true,
        'publicly_queryable'=>  true,
        'show_ui'           =>  true, 
        'query_var'         =>  true,
        'show_in_nav_menus' =>  false,
        'capability_type'   =>  'page',
        'hierarchical'      =>  true,
        'rewrite'=> [
            'slug' => 'help-center',
            "with_front" => false
        ],
        "cptp_permalink_structure" => "/%help_centre_category%/%post_id%-%postname%/",
        'menu_position'     =>  21,
        'supports'          =>  array('title','editor', 'thumbnail'),
        'has_archive'       =>  true
    ));
    flush_rewrite_rules();
}
add_action('init', 'help_centre_post_type');

そして、ここに登録された分類法があります

function themes_taxonomy() {  
    register_taxonomy(  
        'help_centre_category',  
        'helpcentre',        
        array(
            'label' => __( 'Categories' ),
            'rewrite'=> [
                'slug' => 'help-center',
                "with_front" => false
            ],
            "cptp_permalink_structure" => "/%help_centre_category%/",
            'hierarchical'               => true,
            'public'                     => true,
            'show_ui'                    => true,
            'show_admin_column'          => true,
            'show_in_nav_menus'          => true,
            'query_var' => true
        ) 
    );  
}  
add_action( 'init', 'themes_taxonomy');

これはパーマリンクを機能させる行です

"cptp_permalink_structure" => "/%help_centre_category%/%post_id%-%postname%/",

取り外し%post_id%て保管できます/%help_centre_category%/%postname%/"

ダッシュボードからパーマリンクをフラッシュすることを忘れないでください。


1

私にとっての解決策は3つの部分で構成されていました。私の場合、投稿タイプはと呼ばれtrainingsます。

  1. 関数に追加'rewrite' => array('slug' => 'trainings/%cat%')register_post_typeます。
  2. スラッグを変更して、動的カテゴリを設定します。
  3. 新しい動的URLを「リッスン」し、適切なテンプレートをロードします。

そのため、特定の投稿タイプに対してパーマリンクを動的に変更する方法を次に示します。に追加functions.php

function vx_soon_training_post_link( $post_link, $id = 0 ) {
    $post = get_post( $id );
    if ( is_object( $post ) ) {
        $terms = wp_get_object_terms( $post->ID, 'training_cat' );
        if ( $terms ) {
            return str_replace( '%cat%', $terms[0]->slug, $post_link );
        }
    }

    return $post_link;
}

add_filter( 'post_type_link', 'vx_soon_training_post_link', 1, 3 );

...そして、これが新しい動的URLに適切なテンプレートをロードする方法です。に追加functions.php

function archive_rewrite_rules() {
    add_rewrite_rule(
        '^training/(.*)/(.*)/?$',
        'index.php?post_type=trainings&name=$matches[2]',
        'top'
    );
    //flush_rewrite_rules(); // use only once
}

add_action( 'init', 'archive_rewrite_rules' );

それでおしまい!バックエンドでパーマリンクを再度保存して、パーマリンクを更新することを忘れないでください。または、flush_rewrite_rules()関数を使用します。


1

register_post_type関数を使用してカスタム投稿タイプを登録した場所で、以下の行を更新する必要があります。

'rewrite' => array( 'slug' => 'courses /%cat%')

投稿タイプのパーマリンクを動的に変更するには、functions.phpファイルに以下のコードを追加する必要があります。

function change_link( $post_link, $id = 0 ) {
    $post = get_post( $id );
    if( $post->post_type == 'courses' ) 
    {
       if ( is_object( $post ) ) {
          $terms = wp_get_object_terms( $post->ID, array('course') );
          if ( $terms ) {
             return str_replace( '%cat%', $terms[0]->slug, $post_link );
         }
      }
    }
    return   $post_link ;
}
add_filter( 'post_type_link', 'change_link', 1, 3 );

//load the template on the new generated URL otherwise you will get 404's the page

function generated_rewrite_rules() {
   add_rewrite_rule(
       '^courses/(.*)/(.*)/?$',
       'index.php?post_type=courses&name=$matches[2]',
       'top'
   );
}
add_action( 'init', 'generated_rewrite_rules' );

その後、書き換えパーマリンクをフラッシュし、wp-admin>設定>パーマリンクに移動する必要があります。[変更を保存]ボタンを使用してパーマリンク設定を更新するだけです。

以下のようなURLを返します:

  • domain.com/courses/[course-name{category}]/lesson-name

ありがとうございました!


0

これは私のために働いています:

'rewrite' => array(
        'slug' => 'portfolio',
        'with_front' => false,
        'hierarchical' => true // to display category/subcategroy
    ),

5
これはカテゴリまたはそのパスを使用せず、カスタム投稿タイプを階層化するだけです。
ジョリスクルース

0

生のPHPコードをいじる必要なく、このソリューションに興味がある人には、Maciej BisのプラグインPermalink Manager Liteを強くお勧めします。それは命の恩人です。

「permastructs」に基づいて、カスタム投稿タイプのURLで必要な部分を削除または追加する視覚的なメカニズムがあります。

Permalink Manager Liteのスクリーンショット

(カスタム投稿タイプを使用した単純なURL構造化に伴うすべての苦痛により、WPをあきらめ、別のCMSに移行しようとしていました。ただし、このプラグインはACFおよびCPTUIまたはPodsと連携してWordpressをかなりプロフェッショナルにします。)

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.