Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BP_XProfile_Field::name_and_description()
Private method used to output field name and description fields.
Description Description
Source Source
File: bp-xprofile/classes/class-bp-xprofile-field.php
private function name_and_description() { ?> <div id="titlediv"> <div class="titlewrap"> <label id="title-prompt-text" for="title"><?php echo esc_html_x( 'Name (required)', 'XProfile admin edit field', 'buddypress' ); ?></label> <input type="text" name="title" id="title" value="<?php echo esc_attr( $this->name ); ?>" autocomplete="off" /> </div> </div> <div class="postbox"> <h2><?php echo esc_html_x( 'Description', 'XProfile admin edit field', 'buddypress' ); ?></h2> <div class="inside"> <label for="description" class="screen-reader-text"><?php /* translators: accessibility text */ esc_html_e( 'Add description', 'buddypress' ); ?></label> <textarea name="description" id="description" rows="8" cols="60"><?php echo esc_textarea( $this->description ); ?></textarea> </div> </div> <?php }
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |