वर्डप्रेस एडमिन में श्रेणी, टैग और कस्टम टैक्सोनॉमी एडिट स्क्रीन में फील्ड्स को जोड़ना?


33

सवाल यह है कि मैं वर्डप्रेस एडमिन में श्रेणी, टैग और कस्टम टैक्सोनॉमी एडिट स्क्रीन में एक या एक से अधिक फ़ील्ड कैसे जोड़ सकता हूं? "यह प्रश्न 1 अगस्त 2010 को wp-hackers की सूची में पूछा गया था और मैंने उस दिन बाद में एक समाधान पेश कियामूल प्रश्नकर्ता मुद्दा फिर से चर्चा की आज (अगस्त 21) जो मुझे समाधान की याद दिला दी। चूंकि यह एक सामान्य आवश्यकता हो सकती है इसलिए मैंने भविष्य में खोजने के लिए अन्य लोगों के लिए कोड सहित समाधान पोस्ट करने का निर्णय लिया।


हाय माइक, मुझे लगता है कि यदि आप उत्तर बॉक्स में कोड पोस्ट करते हैं तो बेहतर होगा। इस तरह, हम यहाँ बैकअप है, अगर नीचे github है।
०३:१३ बजे ariedbayu

@ निष्ठा: अरे, मैं इस पर काम कर रहा हूँ। :) मैं आधा काम कर चुका हूं, लेकिन मैंने एक दीवार को मारा है और सोने की जरूरत है। यह तब होगा जब मैं करूँगा (कुछ) जैसा दिखता हूँ: wordpress.stackexchange.com/questions/578/#582
MikeSchinkel

इस पर कोई और घटनाक्रम? मुझे वास्तव में दिलचस्पी है ...: D
John P Bloch

हे @ जॉन पी बलोच : मेरे ग्राहकों ने मुझे नीचे पिन किया है और अभी समय नहीं आया है। उम्मीद है जल्द ही ...
माइकस्किंकेल

@ जॉन पी बलोच मैंने वास्तव में इसकी कोशिश की थी और यह बहुत अच्छा काम करता है, मुझे एक मूल श्रेणी के बिना कुछ श्रेणियों के 'समूह' की आवश्यकता थी।
अमित

जवाबों:


23

मैंने इनकी मदद से श्रेणी में नई फील्ड 'पिक्चर' (इनपुट टाइप फाइल) जोड़ी

add_action('category_edit_form_fields','category_edit_form_fields');
add_action('category_edit_form', 'category_edit_form');
add_action('category_add_form_fields','category_edit_form_fields');
add_action('category_add_form','category_edit_form');


function category_edit_form() {
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#edittag').attr( "enctype", "multipart/form-data" ).attr( "encoding", "multipart/form-data" );
        });
</script>
<?php 
}

function category_edit_form_fields () {
?>
    <tr class="form-field">
            <th valign="top" scope="row">
                <label for="catpic"><?php _e('Picture of the category', ''); ?></label>
            </th>
            <td>
                <input type="file" id="catpic" name="catpic"/>
            </td>
        </tr>
        <?php 
    }

आप किसी भी टैक्सोनॉमी का उपयोग करने के लिए स्वतंत्र हैं, बस categoryअपने टैक्सोनॉमी नाम को बदलें


यह उत्कृष्ट है, लेकिन क्या आप इसे स्पष्ट कर सकते हैं (या संभवतः एक उदाहरण प्रदान कर सकते हैं) कि आप इस कस्टमाइजेशन को सही ढंग से कैसे एकीकृत करेंगे यदि आप इसे एक कस्टम टैक्सोनॉमी में जोड़ना चाहते हैं - उदाहरण के लिए "लोग"
NetConstructor.com

2
अद्यतन - हालाँकि मैंने आपके सटीक कोड की प्रतिलिपि बनाई है यह परीक्षण करने के लिए कि फ़ाइल सहेजने वाली नहीं है या कम से कम यह दिखाई नहीं दे रही है। क्या आप बता सकते हैं कि इसकी फ़ाइल को सहेजना कहाँ है, हो सकता है कि उस फ़ोल्डर की अनुमतियों को संपादित करने की आवश्यकता हो (या इससे भी बेहतर, क्या आप संभवतः यह वर्णन कर सकते हैं कि कोई व्यक्ति उस फ़ोल्डर के स्थान को संशोधित करने के बारे में कैसे जाएगा, जहां उसे बचाया गया है?)। जब मैं एक फ़ाइल का चयन करता हूं और तब एक शब्द को बचाने की कोशिश करता हूं, तो फ़ाइल को छोड़कर सब कुछ सहेजता है और इस तरह मुझे अपलोड की गई छवि नहीं दिखाता है।
NetConstructor.com

9

साथ ही, यदि आप उस फ़ील्ड को कस्टम टैक्सोनॉमी के रूप में जोड़ना चाहते हैं, तो आप add_actionफ़ंक्शन में कस्टम टैक्सोनॉमी नाम के साथ सिर्फ विकल्प श्रेणी का चयन कर सकते हैं।

उदाहरण:

add_action('{custom_taxonomy}_edit_form_fields','category_edit_form_fields');
add_action('{custom_taxonomy}_edit_form', 'category_edit_form');
add_action('{custom_taxonomy}_add_form_fields','category_edit_form_fields');
add_action('{custom_taxonomy}_add_form','category_edit_form');

2

जो लोग टैग फॉर्म फ़ील्ड में हुक ढूंढ रहे हैं, उनके लिए हुक थोड़ा अलग है।

add_tag_form_fields

इसके बजाय tag_add_form_fields जैसा कि आप अपेक्षा करेंगे


1

मुझे पता है कि यह कुछ समय पहले पूछा गया था, लेकिन वर्डप्रेस थोड़ा बदल गया है इसलिए मैंने एक छोटी स्क्रिप्ट विकसित करने का फैसला किया है जो टैक्सोनोमी में कस्टम फ़ील्ड को जोड़ने की प्रक्रिया को सरल करता है, और वैकल्पिक रूप से आपको प्रत्येक फ़ील्ड के लिए टर्म्स टेबल में कॉलम जोड़ने देता है। स्क्रिप्ट को अमरकल-टैक्सोनॉमी कहा जाता है , और अमरकाल वर्डप्रेस ढांचे का हिस्सा है ।

amarkal-taxonomyकस्टम फ़ील्ड को जोड़ने से इसका उपयोग सरल हो जाता है:

// Add a text field to the 'category' taxonomy 'add' & 'edit' forms:
amarkal_taxonomy_add_field('category', 'cat_icon', array(
    'type'        => 'text',
    'label'       => 'Icon',
    'description' => 'The category\'s icon',
    'table'       => array(
        'show'      => true,  // Add a column to the terms table
        'sortable'  => true   // Make that column sortable
    )
));

// Then you can retrieve the data using:
$icon = get_term_meta( $term_id, 'cat_icon', true );

1

मैंने जोड़ छवि जोड़ दी है और छवि को अतिरिक्त कर सीमा शुल्क में दायर कर दिया है जिसका नाम बीमा है।

/**
 * Plugin class
 **/
if ( ! class_exists( 'CT_TAX_META' ) ) {

class CT_TAX_META {

  public function __construct() {
    //
  }

 /*
  * Initialize the class and start calling our hooks and filters
  * @since 1.0.0
 */
 public function init() {
   add_action( 'insurance_add_form_fields', array ( $this, 'add_category_image' ), 10, 2 );
   add_action( 'created_insurance', array ( $this, 'save_category_image' ), 10, 2 );
   add_action( 'insurance_edit_form_fields', array ( $this, 'update_category_image' ), 10, 2 );
   add_action( 'edited_insurance', array ( $this, 'updated_category_image' ), 10, 2 );
   add_action( 'admin_enqueue_scripts', array( $this, 'load_media' ) );
   add_action( 'admin_footer', array ( $this, 'add_script' ) );
 }

public function load_media() {
 wp_enqueue_media();
}

 /*
  * Add a form field in the new category page
  * @since 1.0.0
 */
 public function add_category_image ( $taxonomy ) { ?>
   <div class="form-field term-group">
     <label for="category-image-id"><?php _e('Image', 'hero-theme'); ?></label>
     <input type="hidden" id="category-image-id" name="category-image-id" class="custom_media_url" value="">
     <div id="category-image-wrapper"></div>
     <p>
       <input type="button" class="button button-secondary ct_tax_media_button" id="ct_tax_media_button" name="ct_tax_media_button" value="<?php _e( 'Add Image', 'hero-theme' ); ?>" />
       <input type="button" class="button button-secondary ct_tax_media_remove" id="ct_tax_media_remove" name="ct_tax_media_remove" value="<?php _e( 'Remove Image', 'hero-theme' ); ?>" />
    </p>
   </div>
 <?php
 }

 /*
  * Save the form field
  * @since 1.0.0
 */
 public function save_category_image ( $term_id, $tt_id ) {
   if( isset( $_POST['category-image-id'] ) && '' !== $_POST['category-image-id'] ){
     $image = $_POST['category-image-id'];
     add_term_meta( $term_id, 'category-image-id', $image, true );
   }
 }

 /*
  * Edit the form field
  * @since 1.0.0
 */
 public function update_category_image ( $term, $taxonomy ) { ?>
   <tr class="form-field term-group-wrap">
     <th scope="row">
       <label for="category-image-id"><?php _e( 'Image', 'hero-theme' ); ?></label>
     </th>
     <td>
       <?php $image_id = get_term_meta ( $term -> term_id, 'category-image-id', true ); ?>
       <input type="hidden" id="category-image-id" name="category-image-id" value="<?php echo $image_id; ?>">
       <div id="category-image-wrapper">
         <?php if ( $image_id ) { ?>
           <?php echo wp_get_attachment_image ( $image_id, 'thumbnail' ); ?>
         <?php } ?>
       </div>
       <p>
         <input type="button" class="button button-secondary ct_tax_media_button" id="ct_tax_media_button" name="ct_tax_media_button" value="<?php _e( 'Add Image', 'hero-theme' ); ?>" />
         <input type="button" class="button button-secondary ct_tax_media_remove" id="ct_tax_media_remove" name="ct_tax_media_remove" value="<?php _e( 'Remove Image', 'hero-theme' ); ?>" />
       </p>
     </td>
   </tr>
 <?php
 }

/*
 * Update the form field value
 * @since 1.0.0
 */
 public function updated_category_image ( $term_id, $tt_id ) {
   if( isset( $_POST['category-image-id'] ) && '' !== $_POST['category-image-id'] ){
     $image = $_POST['category-image-id'];
     update_term_meta ( $term_id, 'category-image-id', $image );
   } else {
     update_term_meta ( $term_id, 'category-image-id', '' );
   }
 }

/*
 * Add script
 * @since 1.0.0
 */
 public function add_script() { ?>
   <script>
     jQuery(document).ready( function($) {
       function ct_media_upload(button_class) {
         var _custom_media = true,
         _orig_send_attachment = wp.media.editor.send.attachment;
         $('body').on('click', button_class, function(e) {
           var button_id = '#'+$(this).attr('id');
           var send_attachment_bkp = wp.media.editor.send.attachment;
           var button = $(button_id);
           _custom_media = true;
           wp.media.editor.send.attachment = function(props, attachment){
             if ( _custom_media ) {
               $('#category-image-id').val(attachment.id);
               $('#category-image-wrapper').html('<img class="custom_media_image" src="" style="margin:0;padding:0;max-height:100px;float:none;" />');
               $('#category-image-wrapper .custom_media_image').attr('src',attachment.url).css('display','block');
             } else {
               return _orig_send_attachment.apply( button_id, [props, attachment] );
             }
            }
         wp.media.editor.open(button);
         return false;
       });
     }
     ct_media_upload('.ct_tax_media_button.button'); 
     $('body').on('click','.ct_tax_media_remove',function(){
       $('#category-image-id').val('');
       $('#category-image-wrapper').html('<img class="custom_media_image" src="" style="margin:0;padding:0;max-height:100px;float:none;" />');
     });
     // Thanks: http://stackoverflow.com/questions/15281995/wordpress-create-category-ajax-response
     $(document).ajaxComplete(function(event, xhr, settings) {
       var queryStringArr = settings.data.split('&');
       if( $.inArray('action=add-tag', queryStringArr) !== -1 ){
         var xml = xhr.responseXML;
         $response = $(xml).find('term_id').text();
         if($response!=""){
           // Clear the thumb image
           $('#category-image-wrapper').html('');
         }
       }
     });
   });
 </script>
 <?php }

  }

$CT_TAX_META = new CT_TAX_META();
$CT_TAX_META -> init();

}

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

add_action( 'taxonomy_add_form_fields', array ( $this, 'add_category_image' ), 10, 2 ).

मेरा टैक्सोनॉमी स्लग नाम बीमा है।

add_action ('insurance_add_form_fields', array ($ यह, 'add_category_image'), 10, 2);

अपनी functions.phpफ़ाइल में इस कोड का उपयोग करें ।


0

आपको अपने कोड्स को अपने थीम्स फंक्शन्स.php फाइल में जोड़ना होगा - यदि आप उस फील्ड को कस्टम टैक्सोनॉमी के रूप में जोड़ना चाहते हैं, तो आप ऐड_एक्शन फ़ंक्शन में कस्टम टैक्सोनॉमी नाम के साथ सिर्फ एक विकल्प श्रेणी चुनें। उदाहरण: add_action ('category_edit_form_fields', 'category_edit_form_fields'); add_action ('custom_taxonomy_name_form_fields', 'function_name_to_hook_on') होगा;


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