Skip to content

microsub_block

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

Auto-generated Example

/**
 * Callback function for the 'microsub_block' filter.
 *
 * @param mixed $ret 
 * @param mixed $channel 
 * @param string $url 
 * @param mixed $user_id 
 * @return mixed The filtered value.
 */
function my_microsub_block_callback( $ret, $channel, string $url, $user_id ) {
    // Your code here.
    return $ret;
}
add_filter( 'microsub_block', 'my_microsub_block_callback', 10, 4 );

Parameters

  • $ret
  • $channel
  • string $url
  • $user_id

Files

\apply_filters( 'microsub_block', null, $channel, $url, $user_id )

← All Hooks

Clone this wiki locally