最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

wp localize script - Translate string with wp_localize_script()

matteradmin7PV0评论
    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?

Post a comment

comment list (0)

  1. No comments so far