We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/** * 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 )
← All Hooks