เพิ่มฐานหมวดหมู่ไปยัง url ในประเภทโพสต์ / taxonomy ที่กำหนดเอง


23

ฉันกำลังสร้างระบบ LMS ประเภทใน WordPress, Custom Post typesการควบคุมโดย
โพสต์ประเภทที่เรียกว่าLessons(กับกระสุนของcourses) และก็มีหนึ่ง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 ได้ที่ไหน ฉันจะไปที่ด้านล่างของเอกสารทั้งหมดได้ไหม
Zach Russell

ฉันเพิ่มไปที่ด้านล่างและมันเป็นหน้า 404
Zach Russell

1
คุณต้องล้างข้อมูลเขียนใหม่ไปที่หน้าการตั้งค่าลิงก์ถาวร
Milo

นอกจากนี้โปรดทราบว่าคุณอาจมีความขัดแย้งกับอนุกรมวิธานและประเภทโพสต์ที่ใช้ร่วมกันกระสุนเดียวกัน
Milo

ที่ฉันอยู่ในขณะนี้มันทำให้การเชื่อมโยงที่ถูกต้อง แต่มันไม่ทำงานอย่างถูกต้อง (มันนุ่ม 404ing) มีคำแนะนำเกี่ยวกับสิ่งที่ฉันสามารถทำได้เพื่อให้การทำงานนี้ถูกต้องหรือไม่ ฉันไม่สามารถเขียนล้างความคิดเห็นได้ เพียงคลิก 'บันทึก' และอัปเดตไฟล์ (เป็น nginx ดังนั้นจึงถูกควบคุมในไฟล์ nginx.conf)
Zach Russell

1

อ้อ! หลังจากที่มากของการวิจัยที่ผมได้ปลั๊กอิน' ที่กำหนดเอง Permalinks ' สิ่งที่ตอบสนองความต้องการของฉัน - URL ที่กำหนดเองเช่น

  • สำหรับหมวดหมู่
  • สำหรับโพสต์
  • สำหรับโพสต์ที่กำหนดเอง
  • สำหรับ Taxonomy ที่กำหนดเอง ฯลฯ

ถูกใจประเภทโพสต์ที่กำหนดเองนี้- โพสต์ :

ป้อนคำอธิบายรูปภาพที่นี่


1

เตรียมพร้อมทางออก!

ในการมีลำดับชั้น Permalinks สำหรับประเภทโพสต์ที่กำหนดเองติดตั้งประเภทโพสต์ที่กำหนดเอง Permalinks ( 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

ทางออกสำหรับฉันมีสามส่วน trainingsในกรณีของฉันประเภทโพสต์ที่เรียกว่า

  1. เพิ่ม'rewrite' => array('slug' => 'trainings/%cat%')ไปยังregister_post_typeฟังก์ชั่น
  2. เปลี่ยนกระสุนเป็นหมวดหมู่แบบไดนามิก
  3. "ฟัง" ไปยัง URL แบบไดนามิกใหม่แล้วโหลดเทมเพลตที่เหมาะสม

ดังนั้นนี่คือวิธีการเปลี่ยน Permalink แบบไดนามิกสำหรับโพสต์ประเภทที่กำหนด เพิ่มไปที่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' );

แค่นั้นแหละ! อย่าลืมรีเฟรช Permalinks โดยบันทึก Permalink อีกครั้งในส่วนแบ็กเอนด์ หรือใช้flush_rewrite_rules()ฟังก์ชั่น


1

คุณต้องอัปเดตด้านล่างบรรทัดที่คุณได้ลงทะเบียนประเภทโพสต์ที่กำหนดเองโดยใช้ฟังก์ชั่น register_post_type

'rewrite' => อาร์เรย์ ('slug' => 'หลักสูตร /% cat%')

หากต้องการเปลี่ยน Permalink แบบโพสต์แบบไดนามิกคุณต้องเพิ่มโค้ดด้านล่างในไฟล์ 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' );

หลังจากนั้นคุณจำเป็นต้องปรับเปลี่ยนล้าง Permalinks, โกโตะWP-ผู้ดูแลระบบ> การตั้งค่า> Permalinks เพียงอัปเดตการตั้งค่าลิงก์โดยใช้ปุ่ม "บันทึกการเปลี่ยนแปลง"

มันจะส่งคืน URL ตามด้านล่าง:

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

ขอขอบคุณ!


0

นี่ใช้ได้สำหรับฉัน:

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

5
สิ่งนี้ไม่ได้ใช้ประโยชน์จากหมวดหมู่หรือเส้นทางของมัน แต่จะสร้างประเภทโพสต์ที่กำหนดเองตามลำดับชั้นเท่านั้น
Joris Kroos

0

ทุกคนที่สนใจในการแก้ปัญหาโดยไม่ต้องคนจรจัดกับรหัส PHP ดิบฉันขอแนะนำปลั๊กอินPermalink Manager Liteโดย Maciej Bis มันเป็นตัวช่วยชีวิต

มีกลไกที่มองเห็นได้ในการลบหรือเพิ่มส่วนใด ๆ ที่คุณต้องการใน URL ประเภทโพสต์ที่กำหนดเองตาม 'permastructs':

สกรีนช็อตของ Permalink Manager Lite

(ด้วยความเจ็บปวดทั้งหมดที่เกี่ยวข้องกับการสร้าง URL แบบง่ายด้วยโพสต์ประเภทกำหนดเองเรากำลังจะยอมแพ้ใน WP และย้ายไปที่ CMS อื่น แต่ปลั๊กอินนี้ร่วมกับ ACF และ CPTUI หรือพ็อดทำให้ Wordpress เป็นมืออาชีพอย่างเป็นธรรม)

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.