bp_xprofile_add_meta( int $object_id, string $object_type, string $meta_key, mixed $meta_value, bool $unique = false )

Add a piece of xprofile metadata.

Description

Parameters

$object_id

(int) (Required) ID of the object the metadata belongs to.

$object_type

(string) (Required) Type of object. 'group', 'field', or 'data'.

$meta_key

(string) (Required) Metadata key.

$meta_value

(mixed) (Required) Metadata value.

$unique

(bool) (Optional) Whether to enforce a single metadata value for the given key. If true, and the object already has a value for the key, no change will be made.

Default value: false

Return

(int|bool) The meta ID on successful update, false on failure.

Source

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

function bp_xprofile_add_meta( $object_id, $object_type, $meta_key, $meta_value, $unique = false ) {
	add_filter( 'query', 'bp_filter_metaid_column_name' );
	add_filter( 'query', 'bp_xprofile_filter_meta_query' );
	$retval = add_metadata( 'xprofile_' . $object_type , $object_id, $meta_key, $meta_value, $unique );
	remove_filter( 'query', 'bp_filter_metaid_column_name' );
	remove_filter( 'query', 'bp_xprofile_filter_meta_query' );

	return $retval;
}

Changelog

Changelog
Version Description
BuddyPress 2.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.