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