डैशबोर्ड में "नया उपयोगकर्ता जोड़ें" स्क्रीन पर फ़ील्ड जोड़ना


13

मैं व्यवस्थापक पैनल में नया उपयोगकर्ता पृष्ठ जोड़ने के लिए "कंपनी का नाम" फ़ील्ड जोड़ना चाहूंगा। मैंने काफी खोज की है और ऐसा करने के बारे में विवरण नहीं पा सका हूं। मैं आसानी से प्रोफाइल पेज और पंजीकरण के साथ जानकारी जोड़ सकते हैं ..

   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);

लेकिन किसी और चीज पर कोई पासा नहीं।


इस सुविधा को लागू करने के लिए आप ACF (एडवांस्ड कस्टम फील्ड्स) प्लगइन का उपयोग कर सकते हैं।
लनिश

जवाबों:


17

user_new_form वह हुक है जो यहां जादू कर सकता है।

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');

अधिक जानकारी के लिए मेरे ब्लॉग पोस्ट पर जाएँ: http://scriptbaker.com/adding-custom-fields-to-wordpress-user-profile-and-add-new-user-page/


13

मुझे एक ही आवश्यकता थी और निम्नलिखित हैक बनाया:

<?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
अब हम आपके स्पष्टीकरण की प्रतीक्षा कर रहे हैं।
FUXIA

मैंने देखा कि फाइल का सोर्स कोड user-new.php ई में "add_user_profile" जैसा एक्शन हुक नहीं है, इसलिए मैं इसे "admin_footer_text" एक्शन और $ pagenow == "user-new.php" द्वारा फ़िल्टर करता हूं। अब मैंने कोड को समझाने के लिए हैक की टिप्पणी की।
NkR

3
आप user_new_formकार्रवाई का उपयोग क्यों नहीं करते ?
इसका बाज़

@SazzadTusharKhan सूचक के लिए tx
एलेक्स

3

आपको 2 चीजें करने की आवश्यकता है।

  1. खेतों को पंजीकृत करें
  2. खेतों को बचाएं

नोट: नीचे उदाहरण केवल administratorउपयोगकर्ता की भूमिका के लिए काम करता है ।


1. खेतों का पंजीकरण करें

नए उपयोगकर्ता उपयोग क्रिया जोड़ें के लिएuser_new_form

के लिए उपयोगकर्ता प्रोफ़ाइल उपयोग कार्यों show_user_profile,edit_user_profile

रजिस्टर फ़ील्ड स्निपेट:

/**
 * 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. खेतों को बचाएं

नए उपयोगकर्ता उपयोग क्रिया जोड़ें के लिएuser_register

के लिए उपयोगकर्ता प्रोफ़ाइल उपयोग कार्यों personal_options_update,edit_user_profile_update

फ़ील्ड सहेजें स्निपेट:

/**
 *  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'] );
    }
}

पूरा कोड स्निपेट:

/**
 * 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

मैं वर्कअराउंड का उपयोग करके उपलब्ध है user_new_form_tagजो user-new.phpपेज के शुरुआती टैग के अंदर रहता है । यह अंत में है यदि आप HTML का उत्पादन करते हैं, तो इसके बाद आपको केवल आउटपुट शुरू करने >और >अपने स्वयं के कोड के अंतिम आउटपुट को निकालने की आवश्यकता है । जैसे की:

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" );

user_new_form_tagमें स्थित है user-new.phpचारों ओर लाइन 303 (कम से कम 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" />
...

निश्चित रूप से नकारात्मक पक्ष यह है कि WP कोर में घोषित क्षेत्रों से पहले आपके सभी कस्टम फ़ील्ड को पहले प्रपत्र में दिखाई देना चाहिए।


2

हुक महत्वपूर्ण हैं, इससे कोई फर्क नहीं पड़ता कि हमने फ़ंक्शन के अंदर फॉर्म फ़ील्ड को कैसे सॉर्ट किया है। मेरी इनलाइन टिप्पणियों का पालन करें। वर्डप्रेस 4.2.2 के अनुसार अब हमारे पास बहुत सारे हुक हैं:

<?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_contactmethodsफ़िल्टर हुक को user-new.phpपृष्ठ पर नहीं बुलाया जाता है ताकि काम न करें और दुख की बात है कि यदि आप स्रोत पर एक नज़र डालें तो आप देखेंगे कि कोई भी हुक नहीं है जिसका उपयोग नए उपयोगकर्ता प्रपत्र जोड़ने के लिए अतिरिक्त फ़ील्ड जोड़ने के लिए किया जा सकता है।

तो यह केवल कोर फ़ाइलों (BIG NO NO) को संशोधित करके या जावास्क्रिप्ट या jQuery का उपयोग करके फ़ील्ड्स को जोड़ने और फ़ील्ड्स को पकड़कर किया जा सकता है।

या आप Trac पर एक टिकट बना सकते हैं


दुर्भाग्य से, इसे काम करने के लिए, अस्थायी रूप से, मुझे उपयोगकर्ता-new.php को संशोधित करने के लिए मजबूर किया गया था। यह एक नहीं है। लेकिन उम्मीद है कि यह अस्थायी है।
ज़च शालबिटर

1

निम्नलिखित कोड "जीवनी जानकारी" को "उपयोगकर्ता जोड़ें" रूप में प्रदर्शित करेगा


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


एक कोड-केवल उत्तर एक बुरा उत्तर है। संबंधित कोडेक्स लेख को जोड़ने और यहां कोड को समझाने का प्रयास करें।
मयीनुल इस्लाम

0

ऐसा करने के लिए आपको उपयोगकर्ता-new.php पृष्ठ को मैन्युअल रूप से बदलना होगा। यह इसे संभालने का सही तरीका नहीं है, लेकिन अगर आपको इसकी ज़रूरत है तो इसे पूरा करने की ज़रूरत है।

मैंने कहा

<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>

मैंने फ़ंक्शन को भी जोड़ दिया

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

0

यह नए उपयोगकर्ता पृष्ठ के लिए नहीं करेगा, लेकिन यदि आप इसे "आपका प्रोफ़ाइल" पृष्ठ (जहां उपयोगकर्ता अपनी प्रोफ़ाइल संपादित कर सकते हैं) में करना चाहते हैं, तो आप फ़ंक्शन में यह आज़मा सकते हैं।

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