Code วันเดือนปี ภาษาไทยใน wordpress

ใส่โค้ดนี้ใน ธีมที่ไฟล์ functions.php

$dayTH = [‘อาทิตย์’,’จันทร์’,’อังคาร’,’พุธ’,’พฤหัสบดี’,’ศุกร์’,’เสาร์’];
$monthTH = [null,’มกราคม’,’กุมภาพันธ์’,’มีนาคม’,’เมษายน’,’พฤษภาคม’,’มิถุนายน’,’กรกฎาคม’,’สิงหาคม’,’กันยายน’,’ตุลาคม’,’พฤศจิกายน’,’ธันวาคม’];
$monthTH_brev = [null,’ม.ค.’,’ก.พ.’,’มี.ค.’,’เม.ย.’,’พ.ค.’,’มิ.ย.’,’ก.ค.’,’ส.ค.’,’ก.ย.’,’ต.ค.’,’พ.ย.’,’ธ.ค.’];
function thai_date_and_time($time){ // 19 ธันวาคม 2556 เวลา 10:10:43
global $dayTH,$monthTH;
$thai_date_return =”วัน”.$dayTH[date(“w”,$time)];
$thai_date_return.=” ที่ “.date(“j”,$time);
$thai_date_return.=” “.$monthTH[date(“n”,$time)];
$thai_date_return.= ” “.(date(“Y”,$time)+543);
$thai_date_return.= ” “.date(“H:i”,$time).”น.”;
return $thai_date_return;
}
function thai_date_and_time_short($time){ // 19 ธ.ค. 2556 10:10:4
global $dayTH,$monthTH_brev;
$thai_date_return = date(“j”,$time);
$thai_date_return.=” “.$monthTH_brev[date(“n”,$time)];
$thai_date_return.= ” “.(date(“Y”,$time)+543);
$thai_date_return.= ” “.date(“H:i”,$time);
return $thai_date_return;
}
function thai_date_short($time){ // 19 ธ.ค. 2556a
global $dayTH,$monthTH_brev;
$thai_date_return = date(“j”,$time);
$thai_date_return.=” “.$monthTH_brev[date(“n”,$time)];
$thai_date_return.= ” “.(date(“Y”,$time)+543);
return $thai_date_return;
}
function thai_date_fullmonth($time){ // 19 ธันวาคม 2556
global $dayTH,$monthTH;
$thai_date_return = date(“j”,$time);
$thai_date_return.=” “.$monthTH[date(“n”,$time)];
$thai_date_return.= ” “.(date(“Y”,$time)+543);
return $thai_date_return;
}
function thai_date_short_number($time){ // 19-12-56
global $dayTH,$monthTH;
$thai_date_return = date(“d”,$time);
$thai_date_return.=”-“.date(“m”,$time);
$thai_date_return.= “-“.substr((date(“Y”,$time)+543),-2);
return $thai_date_return;
}

CODE PHP นำโค้ดนี้ไปใส่จุดที่ต้องการให้แสดงวันที่

<?php
date_default_timezone_set(‘Asia/Bangkok’);
?> <?php $dateData=time(); // วันเวลาขณะนั้น
echo thai_date_and_time($dateData); // 5 กรกฎาคม 2564 เวลา 08:06
?>

DESIGN NUMCHOK CO.,LTD. 
บริษัท ดีไซน์นำโชค จำกัด (สำนักงานใหญ่)
58/146 หมู่ที่ 6 ตำบลบึงน้ำรักษ์ อำเภอธัญบุรี จังหวัดปทุมธานี 12110

Hotline: 082-493-2295
Email: Konyubyub@gmail.com
ID LINE: KONYUBYUB