Skip to content

websub_show_discovery

github-actions[bot] edited this page Jan 2, 2026 · 1 revision

Filter whether to show WebSub discovery links.

Auto-generated Example

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

Parameters

  • bool $show_discovery Whether to show discovery links.

Files

\apply_filters( 'websub_show_discovery', $show_discovery )

← All Hooks

Clone this wiki locally