You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page Apr 21, 2026
·
14 revisions
Options to be passed to json_encode().
Auto-generated Example
/** * Options to be passed to json_encode(). * * @param int $options * @return int The filtered value. */functionmy_activitypub_json_encode_options_callback( int$options ) {
// Your code here.return$options;
}
add_filter( 'activitypub_json_encode_options', 'my_activitypub_json_encode_options_callback' );