-
Notifications
You must be signed in to change notification settings - Fork 14
friends_feed_list_item
Alex Kirk edited this page Oct 17, 2024
·
8 revisions
add_action(
'friends_feed_list_item',
function (
$feed,
string $term_id
) {
// Your code here
},
10,
2
);
$feed
-
string
$term_id
Other variable names:$new
do_action( 'friends_feed_list_item', $feed, $term_id )
do_action( 'friends_feed_list_item', isset( $feed ) ? $feed : array(), 'new' )