Hai bisogno di un semplice ma completo esempio di aggiunta di metabox alla tassonomia


18

Ora che WordPress 4.4 è uscito, possiamo iniziare a usare le nuove fantastiche funzioni meta!

Tuttavia, non sembra esserci un semplice tutorial su come aggiungere un campo di testo di base a una tassonomia. Ho provato ad adattare questo fantastico tutorial di Justin Tadlock alle mie esigenze, rimuovendo tutto il codice relativo al selettore di colori e sostituendolo con un semplice campo di inserimento testo ... ma non funziona.

Qualcuno potrebbe fornire un esempio di codice di lavoro bare-bones? Senza convalida dei dati, nonce, selettori di colore ... solo una casella di testo minima, aggiunta alla pagina Aggiungi tassonomia / Modifica tassonomia.

Aggiornamento: nel frattempo, ho apportato alcune varianti di questo frammento di codice:

Aggiungi termine metacampo alla Categoria :
https://gist.github.com/ms-studio/543a0f7dd8ac05ccf037

Aggiungi termine metacampo al tag post :
https://gist.github.com/ms-studio/2d78ad3839e05ece2e48

Aggiungi metacampo di termine alla tassonomia personalizzata :
https://gist.github.com/ms-studio/fc21fd5720f5bbdfaddc

Aggiungi diversi metadati a termini alla tassonomia personalizzata :
https://gist.github.com/ms-studio/aeae733f5fd9fc524bbc


Pubblica il tuo frammento di codice corrente e come fallisce.
Birgire,

@birgire mi dispiace di non aver pubblicato il mio codice originale, ma era già troppo incasinato e preferirei iniziare da un chiaro esempio.
Manu,

Risposte:


13

Ciò aggiungerà un campo chiamato "TESTO META 'A TERMINI" alle tue categorie. Ho eliminato il nonce ma penso davvero che dovrebbe tornare indietro. Inoltre, è meglio avere un po 'di sanificazione contro nessuno. Questo esempio include hook javascript e CSS di cui potresti avere bisogno o meno, ma puoi vedere rapidamente come vanno insieme tutte le parti.

Godere!

// REGISTER TERM META

add_action( 'init', '___register_term_meta_text' );

function ___register_term_meta_text() {

    register_meta( 'term', '__term_meta_text', '___sanitize_term_meta_text' );
}

// SANITIZE DATA

function ___sanitize_term_meta_text ( $value ) {
    return sanitize_text_field ($value);
}

// GETTER (will be sanitized)

function ___get_term_meta_text( $term_id ) {
  $value = get_term_meta( $term_id, '__term_meta_text', true );
  $value = ___sanitize_term_meta_text( $value );
  return $value;
}

// ADD FIELD TO CATEGORY TERM PAGE

add_action( 'category_add_form_fields', '___add_form_field_term_meta_text' );

function ___add_form_field_term_meta_text() { ?>
    <?php wp_nonce_field( basename( __FILE__ ), 'term_meta_text_nonce' ); ?>
    <div class="form-field term-meta-text-wrap">
        <label for="term-meta-text"><?php _e( 'TERM META TEXT', 'text_domain' ); ?></label>
        <input type="text" name="term_meta_text" id="term-meta-text" value="" class="term-meta-text-field" />
    </div>
<?php }


// ADD FIELD TO CATEGORY EDIT PAGE

add_action( 'category_edit_form_fields', '___edit_form_field_term_meta_text' );

function ___edit_form_field_term_meta_text( $term ) {

    $value  = ___get_term_meta_text( $term->term_id );

    if ( ! $value )
        $value = ""; ?>

    <tr class="form-field term-meta-text-wrap">
        <th scope="row"><label for="term-meta-text"><?php _e( 'TERM META TEXT', 'text_domain' ); ?></label></th>
        <td>
            <?php wp_nonce_field( basename( __FILE__ ), 'term_meta_text_nonce' ); ?>
            <input type="text" name="term_meta_text" id="term-meta-text" value="<?php echo esc_attr( $value ); ?>" class="term-meta-text-field"  />
        </td>
    </tr>
<?php }


// SAVE TERM META (on term edit & create)

add_action( 'edit_category',   '___save_term_meta_text' );
add_action( 'create_category', '___save_term_meta_text' );

function ___save_term_meta_text( $term_id ) {

    // verify the nonce --- remove if you don't care
    if ( ! isset( $_POST['term_meta_text_nonce'] ) || ! wp_verify_nonce( $_POST['term_meta_text_nonce'], basename( __FILE__ ) ) )
        return;

    $old_value  = ___get_term_meta_text( $term_id );
    $new_value = isset( $_POST['term_meta_text'] ) ? ___sanitize_term_meta_text ( $_POST['term_meta_text'] ) : '';


    if ( $old_value && '' === $new_value )
        delete_term_meta( $term_id, '__term_meta_text' );

    else if ( $old_value !== $new_value )
        update_term_meta( $term_id, '__term_meta_text', $new_value );
}

// MODIFY COLUMNS (add our meta to the list)

add_filter( 'manage_edit-category_columns', '___edit_term_columns' );

function ___edit_term_columns( $columns ) {

    $columns['__term_meta_text'] = __( 'TERM META TEXT', 'text_domain' );

    return $columns;
}

// RENDER COLUMNS (render the meta data on a column)

add_filter( 'manage_category_custom_column', '___manage_term_custom_column', 10, 3 );

function ___manage_term_custom_column( $out, $column, $term_id ) {

    if ( '__term_meta_text' === $column ) {

        $value  = ___get_term_meta_text( $term_id );

        if ( ! $value )
            $value = '';

        $out = sprintf( '<span class="term-meta-text-block" style="" >%s</div>', esc_attr( $value ) );
    }

    return $out;
}

// ADD JAVASCRIPT & STYLES TO COLUMNS

add_action( 'admin_enqueue_scripts', '___admin_enqueue_scripts' );

function ___admin_enqueue_scripts( $hook_suffix ) {

    if ( 'edit-tags.php' !== $hook_suffix || 'category' !== get_current_screen()->taxonomy )
        return;

    // ADD YOUR SUPPORTING CSS / JS FILES HERE
    // wp_enqueue_style( 'wp-color-picker' );
    // wp_enqueue_script( 'wp-color-picker' );

    add_action( 'admin_head',   '___meta_term_text_print_styles' );
    add_action( 'admin_footer', '___meta_term_text_print_scripts' );
}

// PRINT OUR CUSTOM STYLES

function ___meta_term_text_print_styles() { ?>

    <style type="text/css">
        .column-__term_meta_text { background-color:rgb(249, 249, 249); border: 1px solid lightgray;}
        .column-__term_meta_text .term-meta-text-block { display: inline-block; color:darkturquoise; }
    </style>
<?php }

// PRINT OUR CUSTOM SCRIPTS

function ___meta_term_text_print_scripts() { ?>

    <script type="text/javascript">
        jQuery( document ).ready( function( $ ) {
             $input_field = $( '.term-meta-text-field' );
             // console.log($input_field); // your input field
        } );
    </script>
<?php }

Grazie mille, è davvero utile! Ma quando si applica il codice così com'è, riscontro un problema: il campo TESTO META TESTO viene aggiornato quando un termine viene modificato, ma non viene salvato quando viene creato un termine.
Manu,

Ho provato su un altro sito di test e ho visto lo stesso comportamento: tutto funzionava bene, tranne che alla creazione del termine, il meta-testo non veniva salvato. Ho disabilitato la verifica nonce all'interno ___save_term_meta_text( $term_id )... e questo ha risolto il problema, il meta-testo ora viene salvato durante la creazione di un nuovo termine! Accetto quindi la tua risposta, in quanto fornisce esattamente ciò di cui ho bisogno per iniziare.
Manu,

1
Ho appena capito cosa ha causato il problema: il nonce non veniva definito nella ___add_form_field_term_meta_text()funzione. Dopo averlo aggiunto, tutto funziona come previsto.
Manu,

1
Non c'è bisogno di inquinare con ulteriori nonces poiché WP ne ha già piazzato alcune. Basta fare check_admin_referer( 'add-tag', '_wpnonce_add-tag' );e check_admin_referer( 'update-tag_' . (int) $_POST['tag_ID'] )in 'edit_category'e 'category_category'azioni.
Z. Zlatev,

Vale la pena notare che nella tua ___register_term_meta_text()funzione, il terzo parametro è stato deprecato e sostituito con un array. Dovresti usare qualcosa del tipo:$args = array( 'type' => 'string', 'description' => 'A text field', 'single' => 'false', 'sanitize_callback' => '___sanitize_term_meta_weare_product', 'auth_callback' => null, 'show_in_rest' => false, ); register_meta( 'term', '__term_meta_text', $args );
Frits
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.