-
Notifications
You must be signed in to change notification settings - Fork 19
friends_reblog
github-actions[bot] edited this page Jul 28, 2026
·
28 revisions
Reblogs a post
add_filter(
'friends_reblog',
function(
int $reblog_post_id = null,
WP_Post $post,
string $draft
) {
// Your code here.
return null;
},
10,
3
);-
int|null$reblog_post_idThe post ID of the reblogged post. Default null. -
WP_Post$postThe post object. -
string$draft
apply_filters( 'friends_reblog', null, $post, 'draft' )