We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if ( function_exists( 'icl_register_string' ) ) { $wpml = apply_filters( 'wpml_active_languages', null, array( 'skip_missing' => 0 ) ); /** * WPML has changed the index from 'language_code' to 'code' so * we check for both. */ $wpml_test_index = reset( $wpml ); if ( isset( $wpml_test_index['language_code'] ) ) { $wpml = wp_list_pluck( $wpml, 'language_code' ); } elseif ( isset( $wpml_test_index['code'] ) ) { $wpml = wp_list_pluck( $wpml, 'code' ); } else { $wpml = array(); } $languages = array_merge( $wpml, $languages ); }
The text was updated successfully, but these errors were encountered:
I removed this broken my website with WPML
Sorry, something went wrong.
Please solve the issue
Can you provide us with the php error, because this works fine with wpml. Perhaps there is an issue in the translation strings.
Or is this since the latest wpml update?
No branches or pull requests
The text was updated successfully, but these errors were encountered: