wp localize script - Translate string with wp_localize_script()

admin2025-06-03  5

    function s_localization()
{
    $var = [
        'theme_assets_uri' => get_stylesheet_directory_uri() . '/assets',
        'translations' => [
           'view_less' => __('View Less'),
        ]
    ];
    wp_localize_script('aa', 'ddd', $var);
}
add_action('wp_enqueue_scripts', 's_localization');

I have the function above. I want to translate a tring from my java script file. When i try to translate 'view less' from my java script file, the word doesn't appear in my string translation in WPML plugin. What could be the problem?

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748941819a315016.html

最新回复(0)