0
1

More than 1 year has passed since last update.

カスタムフィールドで数値を3桁区切りでカンマを自動でつける

Last updated at Posted at 2022-02-07

カスタムフィールドで金額を入力する項目を出力する際に、自動で3桁区切りでカンマをつけたいことがあったのでメモ

PHPのnumber_format();を使用する

<?php
$price = number_format(get_field('フィールド名'));
$minute = get_field('フィールド名');
echo {$price} / {$minute}min";
?>

参考記事 → https://www.web-myoko.net/blog/wordpress/comma-separated-number-advanced-custom-fields-wordpress/

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1