Aggiunta di campi alla schermata "Aggiungi nuovo utente" nella dashboard


13

Vorrei aggiungere il campo "Nome azienda" alla pagina Aggiungi nuovo utente nel pannello di amministrazione. Ho fatto un bel po 'di ricerche e non sono stato in grado di trovare dettagli su come farlo. Posso facilmente aggiungere informazioni alla pagina del profilo e registrarmi con ..

   function my_custom_userfields( $contactmethods ) {
    //Adds customer contact details
    $contactmethods['company_name'] = 'Company Name';
    return $contactmethods;
   }
   add_filter('user_contactmethods','my_custom_userfields',10,1);

Ma nessun dado su nient'altro.


È possibile utilizzare il plug- in ACF (Advanced Custom Fields) per implementare questa funzione.
Linish,

Risposte:


17

user_new_form è l'amo che può fare la magia qui.

function custom_user_profile_fields($user){
  ?>
    <h3>Extra profile information</h3>
    <table class="form-table">
        <tr>
            <th><label for="company">Company Name</label></th>
            <td>
                <input type="text" class="regular-text" name="company" value="<?php echo esc_attr( get_the_author_meta( 'company', $user->ID ) ); ?>" id="company" /><br />
                <span class="description">Where are you?</span>
            </td>
        </tr>
    </table>
  <?php
}
add_action( 'show_user_profile', 'custom_user_profile_fields' );
add_action( 'edit_user_profile', 'custom_user_profile_fields' );
add_action( "user_new_form", "custom_user_profile_fields" );

function save_custom_user_profile_fields($user_id){
    # again do this only if you can
    if(!current_user_can('manage_options'))
        return false;

    # save my custom field
    update_usermeta($user_id, 'company', $_POST['company']);
}
add_action('user_register', 'save_custom_user_profile_fields');
add_action('profile_update', 'save_custom_user_profile_fields');

Per maggiori dettagli visita il mio post sul blog: http://scriptbaker.com/adding-custom-fields-to-wordpress-user-profile-and-add-new-user-page/


13

Avevo lo stesso bisogno e ho creato il seguente hack:

<?php
function hack_add_custom_user_profile_fields(){
    global $pagenow;

    # do this only in page user-new.php
    if($pagenow !== 'user-new.php')
        return;

    # do this only if you can
    if(!current_user_can('manage_options'))
        return false;

?>
<table id="table_my_custom_field" style="display:none;">
<!-- My Custom Code { -->
    <tr>
        <th><label for="my_custom_field">My Custom Field</label></th>
        <td><input type="text" name="my_custom_field" id="my_custom_field" /></td>
    </tr>
<!-- } -->
</table>
<script>
jQuery(function($){
    //Move my HTML code below user's role
    $('#table_my_custom_field tr').insertAfter($('#role').parentsUntil('tr').parent());
});
</script>
<?php
}
add_action('admin_footer_text', 'hack_add_custom_user_profile_fields');


function save_custom_user_profile_fields($user_id){
    # again do this only if you can
    if(!current_user_can('manage_options'))
        return false;

    # save my custom field
    update_usermeta($user_id, 'my_custom_field', $_POST['my_custom_field']);
}
add_action('user_register', 'save_custom_user_profile_fields');

3
Ora stiamo aspettando la tua spiegazione.
fuxia

Ho visto il codice sorgente nel file user-new.php e non ho un hook di azione come "add_user_profile", quindi lo simulo con l'azione "admin_footer_text" e lo filtro per $ pagenow == "user-new.php". Ora ho commentato l'hack per spiegare il codice.
NkR,

3
Perché non usi l' user_new_formazione?
itsazzad,

@SazzadTusharKhan tx per il puntatore
alex

3

Devi fare 2 cose.

  1. Registra campi
  2. Salva campi

Nota: l' esempio seguente funziona solo per administratoril ruolo utente.


1. Registrare i campi

Per Aggiungi nuovo utente utilizzare l'azioneuser_new_form

Per le azioni di utilizzo del profilo utenteshow_user_profile ,edit_user_profile

Registra campi Snippet:

/**
 * Add fields to user profile screen, add new user screen
 */
if( !function_exists('m_register_profile_fields') ) {

    //  This action for 'Add New User' screen
    add_action( 'user_new_form', 'm_register_profile_fields' );

    //  This actions for 'User Profile' screen
    add_action( 'show_user_profile', 'm_register_profile_fields' );
    add_action( 'edit_user_profile', 'm_register_profile_fields' );

    function m_register_profile_fields( $user ) {

        if ( !current_user_can( 'administrator', $user_id ) )
            return false;

        ?>

        <h3>Client Portal</h3>
        <table class="form-table">
            <tr>
                <th><label for="dropdown">Portal Category</label></th>
                <td>
                    <input type="text" class="regular-text" name="portal_cat" value="<?php echo esc_attr( get_the_author_meta( 'portal_cat', $user->ID ) ); ?>" id="portal_cat" /><br />
                </td>
            </tr>
        </table>
    <?php }
}

2. Salva i campi

Per Aggiungi nuovo utente utilizzare l'azioneuser_register

Per le azioni di utilizzo del profilo utentepersonal_options_update ,edit_user_profile_update

Salva campi Snippet:

/**
 *  Save portal category field to user profile page, add new profile page etc
 */
if( !function_exists('m_register_profile_fields') ) {

    //  This action for 'Add New User' screen
    add_action( 'user_register', 'cp_save_profile_fields' );

    //  This actions for 'User Profile' screen
    add_action( 'personal_options_update', 'cp_save_profile_fields' );
    add_action( 'edit_user_profile_update', 'cp_save_profile_fields' );

    function cp_save_profile_fields( $user_id ) {

        if ( !current_user_can( 'administrator', $user_id ) )
            return false;

        update_usermeta( $user_id, 'portal_cat', $_POST['portal_cat'] );
    }
}

Snippet di codice completo:

/**
 * Add fields to user profile screen, add new user screen
 */
if( !function_exists('m_register_profile_fields') ) {

    //  This action for 'Add New User' screen
    add_action( 'user_new_form', 'm_register_profile_fields' );

    //  This actions for 'User Profile' screen
    add_action( 'show_user_profile', 'm_register_profile_fields' );
    add_action( 'edit_user_profile', 'm_register_profile_fields' );

    function m_register_profile_fields( $user ) {

        if ( !current_user_can( 'administrator', $user_id ) )
            return false;

        ?>

        <h3>Client Portal</h3>
        <table class="form-table">
            <tr>
                <th><label for="dropdown">Portal Category</label></th>
                <td>
                    <input type="text" class="regular-text" name="portal_cat" value="<?php echo esc_attr( get_the_author_meta( 'portal_cat', $user->ID ) ); ?>" id="portal_cat" /><br />
                </td>
            </tr>
        </table>
    <?php }
}


/**
 *  Save portal category field to user profile page, add new profile page etc
 */
if( !function_exists('m_register_profile_fields') ) {

    //  This action for 'Add New User' screen
    add_action( 'user_register', 'cp_save_profile_fields' );

    //  This actions for 'User Profile' screen
    add_action( 'personal_options_update', 'cp_save_profile_fields' );
    add_action( 'edit_user_profile_update', 'cp_save_profile_fields' );

    function cp_save_profile_fields( $user_id ) {

        if ( !current_user_can( 'administrator', $user_id ) )
            return false;

        update_usermeta( $user_id, 'portal_cat', $_POST['portal_cat'] );
    }
}

2

I soluzione alternativa è disponibile utilizzando il user_new_form_tagmetodo che risiede all'interno del user-new.phptag iniziale del modulo della pagina. Alla fine, quindi, se si esegue l'output di HTML, è sufficiente iniziare l'output con >e rimuovere l'ultimo output >del proprio codice. Come in:

function add_new_field_to_useradd()
{
    echo "><div>"; // Note the first '>' here. We wrap our own output to a 'div' element.

    // Your wanted output code should be here here.

    echo "</div"; // Note the missing '>' here.
}

add_action( "user_new_form_tag", "add_new_field_to_useradd" );

Si user_new_form_tagtrova user-new.phpintorno alla linea 303 (almeno in WP3.5.1):

...
<p><?php _e('Create a brand new user and add it to this site.'); ?></p>
<form action="" method="post" name="createuser" id="createuser" class="validate"<?php do_action('user_new_form_tag');?>>
<input name="action" type="hidden" value="createuser" />
...

Naturalmente il rovescio della medaglia qui è che tutto il tuo campo personalizzato deve apparire prima nel modulo, prima dei campi dichiarati nel core di WP.


2

Gli hook sono importanti, indipendentemente da come abbiamo ordinato i campi modulo all'interno della funzione. Segui i miei commenti in linea. A partire da WordPress 4.2.2 ora abbiamo molti hook:

<?php
/**
 * Declaring the form fields
 */
function show_my_fields( $user ) {
   $fetched_field = get_user_meta( $user->ID, 'my_field', true ); ?>
    <tr class="form-field">
       <th scope="row"><label for="my-field"><?php _e('Field Name') ?> </label></th>
       <td><input name="my_field" type="text" id="my-field" value="<?php echo esc_attr($fetched_field); ?>" /></td>
    </tr>
<?php
}
add_action( 'show_user_profile', 'show_my_fields' ); //show in my profile.php page
add_action( 'edit_user_profile', 'show_my_fields' ); //show in my profile.php page

//add_action( 'user_new_form_tag', 'show_my_fields' ); //to add the fields before the user-new.php form
add_action( 'user_new_form', 'show_my_fields' ); //to add the fields after the user-new.php form

/**
 * Saving my form fields
 */
function save_my_form_fields( $user_id ) {
    update_user_meta( $user_id, 'my_field', $_POST['my_field'] );
}
add_action( 'personal_options_update', 'save_my_form_fields' ); //for profile page update
add_action( 'edit_user_profile_update', 'save_my_form_fields' ); //for profile page update

add_action( 'user_register', 'save_my_form_fields' ); //for user-new.php page new user addition

1

user_contactmethodshook del filtro non viene chiamato nella user-new.phppagina in modo che non funzionerà e purtroppo se dai un'occhiata alla fonte vedrai che non c'è hook che può essere usato per aggiungere campi extra al modulo aggiungi nuovo utente.

Quindi questo può essere fatto solo modificando i file core (BIG NO NO) o aggiungendo i campi usando JavaScript o jQuery e catturando i campi.

oppure puoi creare un Ticket al Trac


Sfortunatamente, per farlo funzionare temporaneamente, sono stato costretto a modificare user-new.php. Questo è un no no. Ma speriamo che sia temporaneo.
Zach Shallbetter,

1

Il seguente codice visualizzerà "Informazioni biografiche" nel modulo "Aggiungi utente"


function display_bio_field() {
  echo "The field html";
}
add_action('user_new_form', 'display_bio_field');


Una risposta di solo codice è una risposta negativa. Prova a collegare l'articolo del Codex correlato e a spiegare il codice qui.
Mayeenul Islam,

0

Per fare ciò dovrai cambiare manualmente la pagina user-new.php. Non è il modo corretto di gestirlo, ma se hai un disperato bisogno è così.

Ho aggiunto

<tr class="form-field">
    <th scope="row"><label for="company_name"><?php _e('Company Name') ?> </label></th>
    <td><input name="company_name" type="text" id="company_name" value="<?php echo esc_attr($new_user_companyname); ?>" /></td>
</tr>

Ho anche aggiunto le informazioni a Functions.php

   function my_custom_userfields( $contactmethods ) {
    $contactmethods['company_name']             = 'Company Name';
    return $contactmethods;
   }
   add_filter('user_contactmethods','my_custom_userfields',10,1);

0

Questo non lo farà per aggiungere la nuova pagina utente, ma se vuoi farlo accadere nella pagina "Il tuo profilo" (dove gli utenti possono modificare il loro profilo), allora puoi provare questo in Functions.php:

add_action( 'show_user_profile', 'my_show_extra_profile_fields' );
add_action( 'edit_user_profile', 'my_show_extra_profile_fields' );
function my_show_extra_profile_fields( $user ) { ?>
    <h3>Extra profile information</h3>
    <table class="form-table">
        <tr>
            <th><label for="companyname">Company Name</label></th>
            <td>
                <input type="text" name="companyname" id="companyname" value="<?php echo esc_attr( get_the_author_meta( 'companyname', $user->ID ) ); ?>" class="regular-text" /><br />
                <span class="description">Where are you?</span>
            </td>
        </tr>
    </table>
<?php }
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.