BP_XProfile_Field_Type_Telephone::admin_field_html( array $raw_properties = array() )

Output HTML for this field type on the wp-admin Profile Fields screen.

Description

Must be used inside the bp_profile_fields() template loop.

Parameters

$raw_properties

(array) (Optional) key/value array of permitted attributes that you want to add.

Default value: array()

Source

File: bp-xprofile/classes/class-bp-xprofile-field-type-telephone.php

	public function admin_field_html( array $raw_properties = array() ) {
		$r = bp_parse_args( $raw_properties, array(
			'type' => 'tel',
		) ); ?>

		<label for="<?php bp_the_profile_field_input_name(); ?>" class="screen-reader-text"><?php
			/* translators: accessibility text */
			esc_html_e( 'Phone', 'buddyboss' );
		?></label>
		<input <?php echo $this->get_edit_field_html_elements( $r ); ?>>

		<?php
        global $field;
        $this->input_mask_script( $field );
	}

Changelog

Changelog
Version Description
BuddyPress 3.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.