Skip to content

activitypub_reply_intent_url

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

Filters the reply intent URL.

Auto-generated Example

/**
 * Filters the reply intent URL.
 *
 * @param string $url 
 * @return string The filtered value.
 */
function my_activitypub_reply_intent_url_callback( string $url ) {
    // Your code here.
    return $url;
}
add_filter( 'activitypub_reply_intent_url', 'my_activitypub_reply_intent_url_callback' );

Parameters

  • string $url The reply intent URL.

Files

\apply_filters( 'activitypub_reply_intent_url', $url )

← All Hooks

Users

Developers

Clone this wiki locally