एक कस्टम टैक्सोनॉमी में एक डिफ़ॉल्ट आइटम कैसे जोड़ें?


10

Wordpress डिफ़ॉल्ट टैक्सोनॉमी (श्रेणियाँ) में डिफ़ॉल्ट रूप से श्रेणीबद्ध आइटम नहीं है। नए कस्टम टैक्सोनॉमी में डिफ़ॉल्ट आइटम कैसे जोड़ें?

functions.php:

// === CUSTOM TAXONOMIES === //
function my_custom_taxonomies() {
    register_taxonomy(
        'block',        // internal name = machine-readable taxonomy name
        'static_content',       // object type = post, page, link, or custom post-type
        array(
            'hierarchical' => true,
            'labels' => array(
                'name' => __( 'Blocks' ),
                'singular_name' => __( 'Block' ),
                'add_new_item' => 'Add New Block',
                'edit_item' => 'Edit Block',
                'new_item' => 'New Block',
                'search_items' => 'Search Block',
                'not_found' => 'No Block found',
                'not_found_in_trash' => 'No Block found in trash',
            ),
            'query_var' => true,    // enable taxonomy-specific querying
            'rewrite' => array( 'slug' => 'block' ),    // pretty permalinks for your taxonomy?
        )
    );
}
add_action('init', 'my_custom_taxonomies', 0);

EDIT: मैं सिर्फ थीम के स्थापित होने पर वहां टैक्सोनॉमी आइटम रखना चाहता हूं। इसे स्वचालित रूप से किसी खाली शब्द में नहीं जोड़ा जाना चाहिए

जवाबों:


8

एक नज़र यहाँ है:

https://web.archive.org/web/20150403012347/http://wordpress.mfields.org/2010/set-default-terms-for-your-custom-taxonomies-in-wordpress-3-0/

मूल रूप से आपको जो करने की आवश्यकता है वह पद के लिए शर्तों की जांच करने के लिए save_post हुक का उपयोग करें और यदि यह खाली है तो अपने वर्गीकरण से डिफ़ॉल्ट शब्द जोड़ें।

यदि आप बस अपने कस्टम टैक्सोनॉमी में एक प्रारंभिक शब्द सेट करना चाहते हैं, तो आप उपयोग कर सकते हैं wp_insert_term()। संभवत: इसे उसी फ़ंक्शन में जोड़ना आसान है जिसका उपयोग आप अपने कस्टम टैक्सोनॉमी बनाने के लिए कर रहे हैं। जैसा कि t3ios टिप्पणियों में जोड़ता है, आपको get_term()पहले कॉल करना चाहिए , और केवल शब्द डालें यदि रिटर्न मान शून्य है (यानी शब्द मौजूद है)।

कोडेक्स से यह उदाहरण कोड है: http://codex.wordpress.org/Function_Reference/wp_insert_term

$parent_term = term_exists( 'fruits', 'product' ); // array is returned if taxonomy is given
$parent_term_id = $parent_term['term_id']; // get numeric term id
wp_insert_term(
  'Apple', // the term 
  'product', // the taxonomy
  array(
    'description'=> 'A yummy apple.', 
    'slug' => 'apple', 
    'parent'=> $parent_term_id
  )
);

@anu मुझे लगता है कि मैंने अपने आप को बहुत अच्छी तरह से नहीं समझाया, मैं बस यही चाहता था कि जब थीम स्थापित हो, तो उस पर वहां कोई करंट लग जाए। अगर यह खाली है तो इसका कोई मतलब नहीं है।
जोंचेन

@janoChen - मैं जवाब अद्यतन
अनु

@anu बहुत बढ़िया, काश मैं आपके जवाब को और अधिक वोट कर पाता। मैंने प्रश्नों का संपादन किया। मुझे आपके द्वारा लिखे गए कोड को वास्तव में कहां रखना चाहिए?
जोंचेन

मेरे द्वारा जोड़ा गया कोड केवल एक उदाहरण है (और यह वर्डप्रेस कोडेक्स से है) - इसलिए आपको इसे आवश्यक रूप से संशोधित करना होगा। इसे जोड़ने के लिए सबसे अच्छी जगह फ़ंक्शन के लिए समापन ब्रेस से ठीक पहले होगी।
अनु

1
आप सुनिश्चित करें कि आप उस फ़ंक्शन में सम्मिलित करना चाहते हैं, यह init पर चलता है, अर्थात। हर पृष्ठ, मुझे नहीं लगता कि आप हर बार जब आप पृष्ठ कहते हैं, तो क्या सम्मिलित करना चाहते हैं? हो सकता है कि इन्सर्ट फंक्शन अशक्त / गलत हो, यदि एक मेल शब्द पहले से ही इस नाम से मौजूद है (मैंने नहीं देखा है), लेकिन सभी वही है जो थोड़ा अनावश्यक लगता है (क्यों नहीं get_term (s) कहते हैं और देखें कि क्या यह मौजूद है, तो डालें अगर नहीं)।
t31os

4

डिफ़ॉल्ट श्रेणी wp_insert_post()फ़ंक्शन में हार्डकोडेड केस है ।

तो यह बिल्कुल दोहराया नहीं जा सकता है, लेकिन आप इसे अन्य तरीकों से संभाल सकते हैं। मैं नए पदों के लिए पोस्ट स्थिति संक्रमण में हुक लगाने की कोशिश करूँगा और यदि कोई भी पोस्ट निर्माण के दौरान असाइन नहीं किया गया था, तो डिफ़ॉल्ट पद चाहता था।


+1 पोस्ट स्थिति हुक से जोड़ने के लिए, ठीक वही है जो मैं देख रहा था।
मैट

0

डिफ़ॉल्ट टर्म प्लगइन का उपयोग करके आप ऐसा कर सकते हैं

register_taxonomy( 'custom-tax', array('post'), array(
    'label'              => 'Custom Tag',
    'public'             => true,
    'show_ui'            => true,
    'default_term'       => 'Some Default Term', // Add this line to your code 
// then activate and deactivate the default term plugin to save the terms you set.
));

डिफ़ॉल्ट रूप से जब पोस्ट सबमिट किया जाता है, तो यह चेक पोस्ट के लिए डिफ़ॉल्ट शब्द को बचाएगा यदि कोई टर्म चेक नहीं है। यह पदानुक्रमित और गैर पदानुक्रमित दोनों तरह के वर्गीकरण के लिए काम करता है।


अच्छा होगा यदि यह स्वचालित रूप से पोस्ट निर्माण दृश्य पर निर्दिष्ट शब्द का चयन करता है, इसलिए उपयोगकर्ता को पता है कि क्या होगा।
गेरोनिस

0

मुझे सप्ताह के दिनों के साथ एक कस्टम टैक्सोनॉमी "डेज़" को आबाद करने की आवश्यकता थी..मैं नहीं चाहता था कि ग्राहक को दिन बनाने के साथ गड़बड़ करना पड़े, या वहां पहुंचें और दिनों या मिसेल दिनों को हटा दें। उपरोक्त सलाह के बाद मैं इस के साथ आया, लेकिन मैं सोच रहा था कि क्या यह कोडिंग का अधिक संक्षिप्त तरीका है:

 /*************************************** ...Create a Custom Taxonomy for days ******************************/
add_action( 'init', 'build_taxonomies', 0 );  
function build_taxonomies() {  
    register_taxonomy( 
    'days', 
    'schedule',
   array( 'hierarchical' => true, 
    'label' => 'Days',
    'query_var' => true, 
    'show_ui' => false, //removes the menus from admin menu and edit panel  
    'rewrite' => true ) );  

/*---------------------------------------Check to see if the days are created..if not, create them----*/
$parent_term = term_exists( 'days', 'days' ); // array is returned if taxonomy is given
$parent_term_id = $parent_term['term_id']; // get numeric term id

wp_insert_term(//this should probably be an array, but I kept getting errors..
        'Monday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'monday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Tuesday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'tuesday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Wednesday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'wednesday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Thursday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'thursday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Friday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'friday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Saturday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'saturday',
        'parent'=> $parent_term_id ));

wp_insert_term(
        'Sunday', // the term 
        'days', // the taxonomy
        array(
        'slug' => 'sunday',
        'parent'=> $parent_term_id ));
}
/************ now I add my own meta box for days to get rid of extra controls *************/

add_action('admin_menu', 'add_custom_categories_box');
function add_custom_categories_box() {
 add_meta_box('myrelateddiv', 'Days*', 'ilc_post_related_meta_box', 'schedule', 'normal', 'low', array( 'taxonomy' => 'days' ));
}

function ilc_post_related_meta_box( $post, $box ) {
  $defaults = array('taxonomy' => 'related');
  if ( !isset($box['args']) || !is_array($box['args']) )
  $args = array();
  else
  $args = $box['args'];
  extract( wp_parse_args($args, $defaults), EXTR_SKIP );
  $tax = get_taxonomy($taxonomy);
?>

  <ul id="<?php echo $taxonomy; ?>checklist" class="list:<?php echo $taxonomy?> categorychecklist form-no-clear">
<?php
  wp_terms_checklist($post->ID, array( 'taxonomy' => $taxonomy, 'popular_cats' => $popular_ids, 'checked_ontop' => FALSE ) )
?>
</ul>   
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.