bp_activity_update_meta( int $activity_id, string $meta_key, mixed $meta_value, mixed $prev_value = '' )

Update a piece of activity meta.


Description Description


Parameters Parameters

$activity_id

(Required) ID of the activity item whose metadata is being updated.

$meta_key

(Required) Key of the metadata being updated.

$meta_value

(Required) Value to be set.

$prev_value

(Optional) If specified, only update existing metadata entries with the specified value. Otherwise, update all entries.

Default value: ''


Top ↑

Return Return

(bool|int) Returns false on failure. On successful update of existing metadata, returns true. On successful creation of new metadata, returns the integer ID of the new metadata row.


Top ↑

Source Source

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

function bp_activity_update_meta( $activity_id, $meta_key, $meta_value, $prev_value = '' ) {
	add_filter( 'query', 'bp_filter_metaid_column_name' );
	$retval = update_metadata( 'activity', $activity_id, $meta_key, $meta_value, $prev_value );
	remove_filter( 'query', 'bp_filter_metaid_column_name' );

	return $retval;
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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