Skip to content

activitypub_app_routes

github-actions[bot] edited this page Jun 19, 2026 · 1 revision

Filters the ActivityPub app route registry.

Auto-generated Example

/**
 * Filters the ActivityPub app route registry.
 *
 * @param array $routes 
 * @return array The filtered value.
 */
function my_activitypub_app_routes_callback( array $routes ) {
    // Your code here.
    return $routes;
}
add_filter( 'activitypub_app_routes', 'my_activitypub_app_routes_callback' );

Parameters

  • array $routes Route definitions.

Files

\apply_filters( 'activitypub_app_routes', $routes )

← All Hooks

Users

Developers

Clone this wiki locally