Skip to content

microsub_get_blocked

github-actions[bot] edited this page Jan 2, 2026 · 3 revisions

Auto-generated Example

/**
 * 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 );

Parameters

  • $ret
  • $channel
  • $user_id

Files

\apply_filters( 'microsub_get_blocked', null, $channel, $user_id )

← All Hooks

Clone this wiki locally