@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* 英語サイトの時だけメインビジュアルのサブテキストを強制上書き */
add_filter('swell_option_main_visual_data', function($mv_data) {
    if (function_exists('pll_current_language') && pll_current_language() === 'en') {
        // スライド1枚目のサブテキストを英語に上書き
        $mv_data[0]['sub_text'] = 'Why do world conflicts persist even after the end of WWII and the Cold War? Let’s explore the answers together.';
    }
    return $mv_data;
});