わりとよくある機会ではないかと思うのですが、カスタムフィールドに金額など大きな数字を入れたときにカンマ区切りにしたいときは以下のコードをfunctions.phpに記載します。
preg_matchで数字のみを対象とするため、日本語が入るようなカスタムフィールドには影響がありません。
		
		
			
			
				
					
				|  | function numberformat($content, $post_id, $key){ 	if(preg_match("/^[0-9]+$/", $content) ){ 		return number_format($content); 	} else { 		return $content; 	} } add_filter('post_meta','numberformat',10,3); |