- 
                Notifications
    
You must be signed in to change notification settings  - Fork 83
 
activitypub_reply_intent_url
        github-actions[bot] edited this page Oct 21, 2025 
        ·
        22 revisions
      
    Filters the reply intent URL.
/**
 * 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' );- 
string$urlThe reply intent URL. 
\apply_filters( 'activitypub_reply_intent_url', $url )Follow @[email protected] for updates and news.