Skip to content

activitypub_use_authorized_fetch

github-actions[bot] edited this page Aug 29, 2025 · 13 revisions

Filters whether to use Authorized-Fetch.

Auto-generated Example

/**
 * Filters whether to use Authorized-Fetch.
 *
 * @param Activitypub\boolean $use_authorized_fetch 
 * @return Activitypub\boolean The filtered value.
 */
function my_activitypub_use_authorized_fetch_callback( Activitypub\boolean $use_authorized_fetch ) {
    // Your code here.
    return $use_authorized_fetch;
}
add_filter( 'activitypub_use_authorized_fetch', 'my_activitypub_use_authorized_fetch_callback' );

Parameters

  • Activitypub\boolean $use_authorized_fetch True if Authorized-Fetch is enabled, false otherwise.

Files

apply_filters( 'activitypub_use_authorized_fetch', $use )

← All Hooks

Users

Developers

Clone this wiki locally