-
-
Notifications
You must be signed in to change notification settings - Fork 11
websub_show_discovery
github-actions[bot] edited this page Jan 2, 2026
·
1 revision
Filter whether to show WebSub discovery links.
/**
* Filter whether to show WebSub discovery links.
*
* @param bool $show_discovery
* @return bool The filtered value.
*/
function my_websub_show_discovery_callback( bool $show_discovery ) {
// Your code here.
return $show_discovery;
}
add_filter( 'websub_show_discovery', 'my_websub_show_discovery_callback' );-
bool$show_discoveryWhether to show discovery links.
\apply_filters( 'websub_show_discovery', $show_discovery )