Skip to content

microsub_adapter_registered

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

Fires when an adapter is registered.

Auto-generated Example

/**
 * Fires when an adapter is registered.
 *
 * @param Microsub\Adapter $this 
 */
function my_microsub_adapter_registered_callback( Microsub\Adapter $this ) {
    // Your code here.
}
add_action( 'microsub_adapter_registered', 'my_microsub_adapter_registered_callback' );

Parameters

  • Microsub\Adapter $this The adapter instance.

Files

\do_action( 'microsub_adapter_registered', $this )

← All Hooks

Clone this wiki locally