/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
// 固定ページごとにページヘッダー背景画像を設定
function my_page_header_bg_css() {
    if ( is_page() ) {
        $img = get_post_meta( get_the_ID(), 'header_bg', true );
        if ( $img ) {
            $page_id = get_the_ID();
            echo '<style>
            body.page-id-' . $page_id . ' .page-header {
                background-image: url("' . esc_url( $img ) . '");
                background-repeat: no-repeat;
                background-position: center bottom;
                background-size: contain;
            }
            </style>';
        }
    }
}
add_action( 'wp_head', 'my_page_header_bg_css' );