पर्मलिंक में कस्टम पोस्ट प्रकार में श्रेणियां जोड़ना


22

मुझे पता है कि लोगों ने इससे पहले पूछा है और कस्टम पोस्ट प्रकार जोड़ने के रूप में दूर चले गए हैं, और पर्मलिंक के लिए फिर से लिखना है।

समस्या यह है कि मेरे पास 340 मौजूदा श्रेणियां हैं जिनका मैं उपयोग जारी रखना चाहूंगा। मैं / श्रेणी / उपश्रेणी / पोस्टनाम देखने में सक्षम हुआ करता था

अब मेरे पास customposttype / postname का स्लग है। श्रेणी का चयन करना अब Permalink में नहीं दिखता है ... मैंने कुछ अलग से व्यवस्थापन में Permalink सेटिंग नहीं बदली है।

क्या ऐसा कुछ है जो मुझे याद आ रहा है या इस कोड में जोड़ने की आवश्यकता है?

function jcj_club_post_types() {
    register_post_type( 'jcj_club', array(
        'labels' => array(
            'name' => __( 'Jazz Clubs' ),
            'singular_name' => __( 'Jazz Club' ),
            'add_new' => __( 'Add New' ),
            'add_new_item' => __( 'Add New Jazz Club' ),
            'edit' => __( 'Edit' ),
            'edit_item' => __( 'Edit Jazz Clubs' ),
            'new_item' => __( 'New Jazz Club' ),
            'view' => __( 'View Jazz Club' ),
            'view_item' => __( 'View Jazz Club' ),
            'search_items' => __( 'Search Jazz Clubs' ),
            'not_found' => __( 'No jazz clubs found' ),
            'not_found_in_trash' => __( 'No jazz clubs found in Trash' ),
            'parent' => __( 'Parent Jazz Club' ),
        ),
        'public' => true,
        'show_ui' => true,
        'publicly_queryable' => true,
        'exclude_from_search' => false,
        'menu_position' => 5,
        'query_var' => true,
        'supports' => array( 
            'title',
            'editor',
            'comments',
            'revisions',
            'trackbacks',
            'author',
            'excerpt',
            'thumbnail',
            'custom-fields',
        ),
        'rewrite' => array( 'slug' => 'jazz-clubs-in', 'with_front' => true ),
        'taxonomies' => array( 'category','post_tag'),
        'can_export' => true,
    )
);

2
यह एक मूर्खतापूर्ण प्रश्न हो सकता है, लेकिन क्या आपने अपने पुनर्लेखन को वापस ले लिया है?
क्रिस्तिना

हाल ही में, मैं इस मुद्दे का सामना करता हूं। हल किया! [# 188,834] [1] [1]: wordpress.stackexchange.com/questions/94817/...
maheshwaghmare

जवाबों:


16

जब आप कस्टम पोस्ट टाइप रीराइट नियम जोड़ रहे हों तो कवर करने के लिए हमले के 2 बिंदु हैं:

नियमों को फिर से लिखना

यह तब होता है जब पुनर्लेखन नियमों को उत्पन्न किया जा रहा wp-includes/rewrite.phpहै WP_Rewrite::rewrite_rules()। वर्डप्रेस आपको पोस्ट, पेज और विभिन्न प्रकार के संग्रह जैसे विशिष्ट तत्वों के लिए फिर से लिखना नियमों को फ़िल्टर करने की अनुमति देता है। जहाँ आप देखते हैं posttype_rewrite_rulesकि posttypeभाग आपके कस्टम पोस्ट प्रकार का नाम होना चाहिए। वैकल्पिक रूप से आप post_rewrite_rulesफ़िल्टर का उपयोग तब तक कर सकते हैं जब तक कि आप मानक पोस्ट नियमों को भी नहीं दोहराते हैं।

अगला हमें वास्तव में फिर से लिखना नियम बनाने के लिए फ़ंक्शन की आवश्यकता है:

// add our new permastruct to the rewrite rules
add_filter( 'posttype_rewrite_rules', 'add_permastruct' );

function add_permastruct( $rules ) {
    global $wp_rewrite;

    // set your desired permalink structure here
    $struct = '/%category%/%year%/%monthnum%/%postname%/';

    // use the WP rewrite rule generating function
    $rules = $wp_rewrite->generate_rewrite_rules(
        $struct,       // the permalink structure
        EP_PERMALINK,  // Endpoint mask: adds rewrite rules for single post endpoints like comments pages etc...
        false,         // Paged: add rewrite rules for paging eg. for archives (not needed here)
        true,          // Feed: add rewrite rules for feed endpoints
        true,          // For comments: whether the feed rules should be for post comments - on a singular page adds endpoints for comments feed
        false,         // Walk directories: whether to generate rules for each segment of the permastruct delimited by '/'. Always set to false otherwise custom rewrite rules will be too greedy, they appear at the top of the rules
        true           // Add custom endpoints
    );

    return $rules;
}

यहां देखने के लिए मुख्य बात यह है कि अगर आप खेलने का फैसला करते हैं तो 'वॉक डाइरेक्टरीज़' बूलियन है। यह एक क्रम के प्रत्येक खंड के लिए फिर से लिखना नियम बनाता है और नियम के बेमेल को फिर से लिख सकता है। जब एक WordPress URL का अनुरोध किया जाता है, तो नियम फिर से लिखे जाते हैं। जैसे ही एक मैच मिलता है, यह लोड हो जाएगा जो कुछ भी यह उदाहरण के लिए भर में आ गया है यदि आपके परमिटस्ट्रक्चर में एक लालची मैच है जैसे। के लिए /%category%/%postname%/और चलना निर्देशिका है यह दोनों के लिए नियमों को फिर से लिखना होगा /%category%/%postname%/और /%category%/जो कुछ भी मेल खाएगा। अगर ऐसा होता है तो आप बहुत जल्दी खराब हो जाते हैं।

स्थायी लिंक में

यह वह फ़ंक्शन है जो पोस्ट प्रकार के पर्मलिंक्स को पार्स करता है और एक वास्तविक URL में एक परमास्ट्रक्ट (जैसे '/% वर्ष% /% माहनाम% /% पोस्टनाम% /') को कनवर्ट करता है।

अगला भाग इस बात का एक सरल उदाहरण है कि आदर्श रूप get_permalink()में पाए जाने वाले फ़ंक्शन का एक संस्करण क्या होगा wp-includes/link-template.php। कस्टम पोस्ट पर्मलिंक्स उत्पन्न होती हैं get_post_permalink()जिसके द्वारा संस्करण के बहुत नीचे पानी डाला जाता है get_permalink()get_post_permalink()द्वारा फ़िल्टर किया जाता है, post_type_linkइसलिए हम कस्टम परमैस्ट्रक्चर बनाने के लिए इसका उपयोग कर रहे हैं।

// parse the generated links
add_filter( 'post_type_link', 'custom_post_permalink', 10, 4 );

function custom_post_permalink( $permalink, $post, $leavename, $sample ) {

    // only do our stuff if we're using pretty permalinks
    // and if it's our target post type
    if ( $post->post_type == 'posttype' && get_option( 'permalink_structure' ) ) {

        // remember our desired permalink structure here
        // we need to generate the equivalent with real data
        // to match the rewrite rules set up from before

        $struct = '/%category%/%year%/%monthnum%/%postname%/';

        $rewritecodes = array(
            '%category%',
            '%year%',
            '%monthnum%',
            '%postname%'
        );

        // setup data
        $terms = get_the_terms($post->ID, 'category');
        $unixtime = strtotime( $post->post_date );

        // this code is from get_permalink()
        $category = '';
        if ( strpos($permalink, '%category%') !== false ) {
            $cats = get_the_category($post->ID);
            if ( $cats ) {
                usort($cats, '_usort_terms_by_ID'); // order by ID
                $category = $cats[0]->slug;
                if ( $parent = $cats[0]->parent )
                    $category = get_category_parents($parent, false, '/', true) . $category;
            }
            // show default category in permalinks, without
            // having to assign it explicitly
            if ( empty($category) ) {
                $default_category = get_category( get_option( 'default_category' ) );
                $category = is_wp_error( $default_category ) ? '' : $default_category->slug;
            }
        }

        $replacements = array(
            $category,
            date( 'Y', $unixtime ),
            date( 'm', $unixtime ),
            $post->post_name
        );

        // finish off the permalink
        $permalink = home_url( str_replace( $rewritecodes, $replacements, $struct ) );
        $permalink = user_trailingslashit($permalink, 'single');
    }

    return $permalink;
}

जैसा कि यह एक कस्टम सरलीकृत नियम और पर्मलिंक बनाने के लिए एक बहुत ही सरलीकृत मामले का उल्लेख किया है, और विशेष रूप से लचीला नहीं है, लेकिन यह आपको शुरू करने के लिए पर्याप्त होना चाहिए।

धोखा दे

मैंने एक प्लगइन लिखा है जो आपको किसी भी कस्टम पोस्ट प्रकारों के लिए पर्मस्ट्रैक्ट्स को परिभाषित करने देता है, लेकिन जैसे आप पोस्टलिंक %category%संरचना में उपयोग कर सकते हैं पोस्ट के लिए मेरा प्लगइन %custom_taxonomy_name%किसी भी कस्टम टैक्सोनॉमी के लिए समर्थन करता है जो आपके पास भी है जहां custom_taxonomy_nameआपके टैक्सोनॉमी का नाम है। %club%

यह आप के पदानुक्रमित / गैर-पदानुक्रमित वर्गीकरणों के साथ अपेक्षा के अनुरूप काम करेगा।

http://wordpress.org/extend/plugins/wp-permastructure/


1
प्लगइन बहुत अच्छा है, लेकिन क्या आप बता सकते हैं कि आपके प्लगइन के बिना प्रश्न में समस्या को कैसे ठीक किया जाए?
यूजीन मनुइलोव

मैं मानता हूं कि इसे संबोधित करने के लिए प्लगइन बहुत अच्छा है (मैंने इसे बुकमार्क कर लिया है और यह पहली बार मेरे दिमाग में इस प्रश्न पर आया है), लेकिन जवाब से संक्षिप्त लाभ होगा कि मुद्दा क्या है और कैसे प्लगइन ने इसे जीत लिया। :)
रारस्ट

@EugeneManuilov ठीक है, माफ करना यह एक लंबा जवाब है। कि यह मेरे साथ मूल बातें करने के लिए नीचे है!
sanchothefat

ऐसा लगता है कि पहले से अधिक $permalink = home_url(...हो जाता है $permalink = user_trailingslashit(...और कभी इस्तेमाल नहीं किया। या क्या मैं कुछ न कुछ भूल रहा हूं? $post_linkपरिभाषित भी नहीं है। क्या यह होना चाहिए था $permalink = user_trailingslashit( $permalink, 'single' );?
इयान दून

अच्छी पकड़ है, यह $permalinkनहीं होना चाहिए $post_link। चीयर्स :)
sanchothefat

1

समाधान मिल गया!

कस्टम पोस्ट प्रकार के लिए पदानुक्रमित पर्मलिंक स्थापित करने के लिए कस्टम पोस्ट प्रकार 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 सबसे सरल उपाय इस प्लगइन का उपयोग करना है: wordpress.org/plugins/custom-post-type-permalinks पूरी तरह से काम करता है
जूल्स

हां, लेकिन यह है कि यदि आपके पास एकल कस्टम पोस्ट प्रकार है, लेकिन यदि आपके पास एकल विषय में कई कस्टम पोस्ट प्रकार हैं तो ऊपर समाधान है। इसके अलावा यह आपकी श्रेणी के स्लग को भी बदल देता है जैसे कि आपकी पोस्ट प्रकार का स्लग।
वर्षा ढेज

1

मैं एक समाधान मिल गया है !!!

(अंतहीन शोध के बाद .. मेरे पास कस्टम पोस्ट प्रकार के परमिट हो सकते हैं :
example.com/category/sub_category/my-post-name

यहाँ कोड (functions.php या प्लगइन में):

//===STEP 1 (affect only these CUSTOM POST TYPES)
$GLOBALS['my_post_typesss__MLSS'] = array('my_product1','....');

//===STEP 2  (create desired PERMALINKS)
add_filter('post_type_link', 'my_func88888', 6, 4 );

function my_func88888( $post_link, $post, $sdsd){
    if (!empty($post->post_type) && in_array($post->post_type, $GLOBALS['my_post_typesss']) ) {  
        $SLUGG = $post->post_name;
        $post_cats = get_the_category($id);     
        if (!empty($post_cats[0])){ $target_CAT= $post_cats[0];
            while(!empty($target_CAT->slug)){
                $SLUGG =  $target_CAT->slug .'/'.$SLUGG; 
                if  (!empty($target_CAT->parent)) {$target_CAT = get_term( $target_CAT->parent, 'category');}   else {break;}
            }
            $post_link= get_option('home').'/'. urldecode($SLUGG);
        }
    }
    return  $post_link;
}

// STEP 3  (by default, while accessing:  "EXAMPLE.COM/category/postname"
// WP thinks, that a standard post is requested. So, we are adding CUSTOM POST
// TYPE into that query.
add_action('pre_get_posts', 'my_func4444',  12); 

function my_func4444($q){     
    if ($q->is_main_query() && !is_admin() && $q->is_single){
        $q->set( 'post_type',  array_merge(array('post'), $GLOBALS['my_post_typesss'] )   );
    }
    return $q;
}

-2

आपके पास अपने कोड के साथ कई त्रुटियां हैं। मैंने आपका मौजूदा कोड साफ़ किया:

<?php
function jcj_club_post_types() {
  $labels = array(
    'name' => __( 'Jazz Clubs' ),
    'singular_name' => __( 'Jazz Club' ),
    'add_new' => __( 'Add New' ),
    'add_new_item' => __( 'Add New Jazz Club' ),
    'edit' => __( 'Edit' ),
    'edit_item' => __( 'Edit Jazz Clubs' ),
    'new_item' => __( 'New Jazz Club' ),
    'view' => __( 'View Jazz Club' ),
    'view_item' => __( 'View Jazz Club' ),
    'search_items' => __( 'Search Jazz Clubs' ),
    'not_found' => __( 'No jazz clubs found' ),
    'not_found_in_trash' => __( 'No jazz clubs found in Trash' ),
    'parent' => __( 'Parent Jazz Club' ),
    );
  $args = array(
    'public' => true,
    'show_ui' => true,
    'publicly_queryable' => true,
    'exclude_from_search' => false,
    'menu_position' => 5,
    'query_var' => true,
    'supports' => array( 'title','editor','comments','revisions','trackbacks','author','excerpt','thumbnail','custom-fields' ),
    'rewrite' => array( 'slug' => 'jazz-clubs-in', 'with_front' => true ),
    'has_archive' => true
    );
  register_post_type( 'jcj_club', $args );
  }
add_action( 'init','jcj_club_post_types' );
?>

अपने कोड को उपरोक्त कोड से बदलें और देखें कि क्या यह काम करता है। यदि आपके पास और प्रश्न हैं तो उत्तर दें और मैं मदद करने का प्रयास करूंगा।

संपादित करें:

मैंने देखा कि मैंने बाहर छोड़ दिया 'has_archive' => true

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.