/*
Theme Name:     lightning_child
Description:    ligntning child
Author:         管理者
Template:       lightning

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/

<?php
//
// Recommended way to include parent theme styles.
//  (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
//  
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
    wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array('parent-style')
    );
}
//
// Your code goes below
//
function my_lightning_header_logo_after() {
echo <<<EOM
<div class="logo-after">
<div class="tel">まずはご相談ください TEL:+662-694-3254</div>
<div class="change_lang">
<p style="text-align: right;"><a href="https://asprova-simlex.com/"><img src="https://asprova-simlex.com/wp-content/uploads/2021/11/Language_JP.png" width="24" height="19" border="0" align="center">にほん語</a> / <a href="https://asprova-simlex.com/en/"><img src="https://asprova-simlex.com/wp-content/uploads/2021/11/Language_EN.png" width="24" height="19" border="0" align="center">English</a> / <a href="https://asprova-simlex.com/th/"><img src="https://asprova-simlex.com/wp-content/uploads/2021/11/Language_TH.png" width="24" height="19" border="0" align="center">ภาษาไทย</a></p></div>
</div>
EOM;
}
add_action('lightning_header_logo_after', 'my_lightning_header_logo_after');