-
Notifications
You must be signed in to change notification settings - Fork 14
friends_user_post_reaction
Alex Kirk edited this page Apr 8, 2024
·
11 revisions
add_action(
'friends_user_post_reaction',
function (
$post_id,
self::validate_emoji($reaction),
$reaction,
$terms[0]
) {
// Your code here
},
10,
4
);
$post_id
self::validate_emoji($reaction)
$reaction
$terms[0]
do_action( 'friends_user_post_reaction', $post_id, self::validate_emoji( $reaction ), $reaction, $terms[0] )