Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mohammadmursaleen/5a0544c5ca38fca770cb17a4bc2acfcc to your computer and use it in GitHub Desktop.
Save mohammadmursaleen/5a0544c5ca38fca770cb17a4bc2acfcc to your computer and use it in GitHub Desktop.
WPML auto string transaltion enable by force
<?php
add_action('wp_head','mm_wpml_string_transaltion_enable_by_force');
/**
* @author Moahammad Mursaleen
* @usage to get WPML string translation work by force
*/
function mm_wpml_string_transaltion_enable_by_force(){
$icl_sitepress_settings = get_option('icl_sitepress_settings');
$icl_sitepress_settings['theme_localization_type'] = 1;
update_option( 'icl_sitepress_settings' , $icl_sitepress_settings );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment