お世話になります。
下記コードをご記載いただくことで可能です。
function my_lightning_header_top_options( $value, $option ) {
if ( 381 === get_the_ID() ) { // 投稿 ID で判定
$value['header_top_tel_icon'] = '<i class="fa-solid fa-square-phone"></i>'; // 電話番号のアイコン
$value['header_top_tel_number'] = '111-1111'; // 電話番号
$value['header_top_contact_icon'] = '<i class="fa-regular fa-envelope"></i>'; // お問い合わせのアイコン
$value['header_top_contact_txt'] = 'お問い合わせはこちら'; // お問い合わせの文字
$value['header_top_contact_url'] = 'https://example.com/'; // お問い合わせ先URL
} elseif ( 478 === get_the_ID() ) { / 投稿 ID で判定
$value['header_top_tel_icon'] = '<i class="fa-solid fa-phone"></i>'; // 電話番号のアイコン
$value['header_top_tel_number'] = '222-2222'; // 電話番号
$value['header_top_contact_icon'] = '<i class="fa-regular fa-envelope"></i>'; // お問い合わせのアイコン
$value['header_top_contact_txt'] = 'お問い合わせはこちら'; // お問い合わせの文字
$value['header_top_contact_url'] = 'https://example.com/'; // お問い合わせ先URL
}
return $value;
}
add_filter( 'option_lightning_header_top_options', 'my_lightning_header_top_options', 10, 2 );
投稿 ID につきましては編集画面を開いていただくと URL の欄に例えば
https://www.example.com/wp-admin/post.php?post=42797&action=edit
とある場合、42797が投稿 ID となります。
以上よろしくお願いします。
P.S.
Lightning G3 + Lightning G3 Pro Unit の場合は
外観 > カスタマイズ > Lightning ヘッダー上部設定 で切り替えるのが正解でした。
失礼致しました。