Skip to content

activitypub_reply_intent_params

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

Filters the reply intent parameters.

Auto-generated Example

/**
 * Filters the reply intent parameters.
 *
 * @param array $params 
 * @return array The filtered value.
 */
function my_activitypub_reply_intent_params_callback( array $params ) {
    // Your code here.
    return $params;
}
add_filter( 'activitypub_reply_intent_params', 'my_activitypub_reply_intent_params_callback' );

Parameters

  • array $params The reply intent parameters.

Files

\apply_filters( 'activitypub_reply_intent_params', array() )

← All Hooks

Users

Developers

Clone this wiki locally