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