Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function wpml_filter_langs( $languages ) {
- if(did_action( 'wp_footer' ) === 0){
- foreach ( $languages as $k => $language ) {
- if($language[$k]['active'] == 1){
- $languages[$k]['country_flag_url'] = NULL;
- $languages[$k]['native_name'] = NULL;
- $languages[$k]['translated_name'] = NULL;
- }
- }
- }
- return $languages;
- }
- add_filter( 'icl_ls_languages', 'wpml_filter_langs' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement