Skip to content

activitypub_pre_http_is_tombstone

github-actions[bot] edited this page Aug 26, 2025 · 10 revisions

Fires before checking if the URL is a tombstone.

Auto-generated Example

/**
 * Fires before checking if the URL is a tombstone.
 *
 * @param string $url 
 * @return string The filtered value.
 */
function my_activitypub_pre_http_is_tombstone_callback( string $url ) {
    // Your code here.
    return $url;
}
add_filter( 'activitypub_pre_http_is_tombstone', 'my_activitypub_pre_http_is_tombstone_callback' );

Parameters

  • string $url The URL to check.

Files

\do_action( 'activitypub_pre_http_is_tombstone', $url )

← All Hooks

Users

Developers

Clone this wiki locally