Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

vyskoczilova/Simple-Admin-Language-Change

Open more actions menu

Repository files navigation

Simple Admin Language Change

plugin repository

The lightweight plugin extends the default functionality and pulls out the language selection to the admin bar so you can easily switch between them.

Plugin preview

Customization

Use the salc_languages filter to control which languages appear in the dropdown:

add_filter( 'salc_languages', function ( $languages ) {
    $allowed = array( 'en_US', 'cs_CZ', 'de_DE' );
    $languages['available'] = array_filter(
        $languages['available'],
        function ( $lang ) use ( $allowed ) {
            return in_array( $lang['value'], $allowed, true );
        }
    );
    return $languages;
} );

About

WP plugin that lets you change your dashboard language quickly and easily from the admin bar as often as you need.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Morty Proxy This is a proxified and sanitized view of the page, visit original site.