-
Notifications
You must be signed in to change notification settings - Fork 0
microsub_get_blocked
github-actions[bot] edited this page Jan 2, 2026
·
3 revisions
/**
* Callback function for the 'microsub_get_blocked' filter.
*
* @param mixed $ret
* @param mixed $channel
* @param mixed $user_id
* @return mixed The filtered value.
*/
function my_microsub_get_blocked_callback( $ret, $channel, $user_id ) {
// Your code here.
return $ret;
}
add_filter( 'microsub_get_blocked', 'my_microsub_get_blocked_callback', 10, 3 );$ret$channel$user_id
\apply_filters( 'microsub_get_blocked', null, $channel, $user_id )