Created
October 5, 2016 10:55
-
-
Save mohammadmursaleen/5a0544c5ca38fca770cb17a4bc2acfcc to your computer and use it in GitHub Desktop.
WPML auto string transaltion enable by force
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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