-
Notifications
You must be signed in to change notification settings - Fork 17
friends_reblog
Alex Kirk edited this page Apr 8, 2024
·
11 revisions
Reblogs a post
add_filter(
'friends_reblog',
function (
Friends\null $null,
$post
) {
// Your code here
return $null;
},
10,
2
);
-
Friends\null
$null
-
$post
Other examples:$post_id
apply_filters( 'friends_reblog', null, $post )
apply_filters( 'friends_reblog', null, $post_id )