admin管理员组

文章数量:1406951

For wordpress language switcher, this post was helpful for others, but I don't know where to add the mentioned filter

How to change language file used by _e function

add_filter('locale', function($locale) {
    return esc_attr($_GET['language']);
});

For wordpress language switcher, this post was helpful for others, but I don't know where to add the mentioned filter

How to change language file used by _e function

add_filter('locale', function($locale) {
    return esc_attr($_GET['language']);
});
Share Improve this question edited Oct 28, 2019 at 13:47 Tom J Nowell 61.2k7 gold badges79 silver badges150 bronze badges asked Oct 28, 2019 at 13:37 abgrxendaabgrxenda 31 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

Add this code to your functions.php file in your WordPress theme files.

See this article for some additional help: https://www.rosehosting/blog/how-to-add-code-to-functions-php-in-wordpress/

本文标签: multi languagewhere to add this filter in which file should be added