会社名 |
//テキスト
$txt = get_field('acf_companyName');
if($txt){ ?> echo $txt; ?>
} ?> |
設立 |
//デイトピッカー
$txt = get_field('acf_companyFormation');
if($txt){ ?> echo $txt; ?>
} ?> |
代表者名 |
//テキスト
$txt = get_field('acf_representatives');
if($txt){ ?> echo $txt; ?>
} ?> |
所在地 |
//テキストエリア
$area = get_field('acf_companyAddress');
if($area){ ?> echo $area; ?>
} ?> |
電話番号 |
//テキスト
$txt = get_field('acf_phoneNumber');
if($txt){ ?> echo $txt; ?>
} ?> |
FAX |
//テキスト
$txt = get_field('acf_faxNumber');
if($txt){ ?> echo $txt; ?>
} ?> |
ウェブサイト |
http://
//テキスト
$txt = get_field('acf_web');
if($txt){ ?> echo $txt; ?>
} ?> |
事業内容 |
//テキスト
$area = get_field('acf_business');
if($area){ ?> echo $area; ?>
} ?> |