bp_notifications_add_meta( int $notification_id, string $meta_key, mixed $meta_value, bool $unique = false )

Add a piece of notification metadata.


Description Description


Parameters Parameters

$notification_id

(Required) ID of the notification item.

$meta_key

(Required) Metadata key.

$meta_value

(Required) Metadata value.

$unique

(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: false.

Default value: false


Top ↑

Return Return

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


Top ↑

Source Source

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

function bp_notifications_add_meta( $notification_id, $meta_key, $meta_value, $unique = false ) {
	add_filter( 'query', 'bp_filter_metaid_column_name' );
	$retval = add_metadata( 'notification', $notification_id, $meta_key, $meta_value, $unique );
	remove_filter( 'query', 'bp_filter_metaid_column_name' );

	return $retval;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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