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