xprofile_update_field_position( int $field_id, int $position, int $field_group_id )

Update the field position for a provided field.


Description Description


Parameters Parameters

$field_id

(Required) ID of the field to update.

$position

(Required) Position to update the field to.

$field_group_id

(Required) Group ID for group the field is in.


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: bp-xprofile/bp-xprofile-functions.php

function xprofile_update_field_position( $field_id, $position, $field_group_id ) {
	return BP_XProfile_Field::update_position( $field_id, $position, $field_group_id );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.