-
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 (
int $reblog_post_id = null,
WP_Post $post
) {
// Your code here
return $reblog_post_id;
},
10,
2
);
-
int|null
$reblog_post_id
The post ID of the reblogged post. Default null. -
WP_Post
$post
The post object.
apply_filters( 'friends_reblog', null, $post )
apply_filters( 'friends_reblog', null, $post_id )