We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filters the ActivityPub app route registry.
/** * 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' );
array
$routes
\apply_filters( 'activitypub_app_routes', $routes )
← All Hooks