- 
                Notifications
    
You must be signed in to change notification settings  - Fork 83
 
activitypub_locale
        github-actions[bot] edited this page Aug 18, 2025 
        ·
        10 revisions
      
    Filter the locale of the post.
/**
 * Filter the locale of the post.
 *
 * @param string            $lang 
 * @param Activitypub\mixed $item 
 * @return string The filtered locale of the post.
 */
function my_activitypub_locale_callback( string $lang, Activitypub\mixed $item ) {
    // Your code here.
    return $lang;
}
add_filter( 'activitypub_locale', 'my_activitypub_locale_callback', 10, 2 );- 
string$langThe locale of the post. - 
Activitypub\mixed$itemThe post object. 
string The filtered locale of the post.
apply_filters( 'activitypub_locale', $lang, $this->item )Follow @[email protected] for updates and news.