-
Notifications
You must be signed in to change notification settings - Fork 80
activitypub_reply_intent_params
github-actions[bot] edited this page Aug 29, 2025
·
13 revisions
Filters the reply intent parameters.
/**
* 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' );
-
array
$params
The reply intent parameters.
\apply_filters( 'activitypub_reply_intent_params', array() )
Follow @[email protected] for updates and news.