wpseek.com
WordPress开发者和主题制作者的搜索引擎



current_datetime › WordPress Function

Since5.3.0
已弃用n/a
current_datetime ( 没有参数 )
返回:
  • (DateTimeImmutable) Date and time object.
定义在:
文档:

Retrieves the current time as an object using the site's timezone.



源码

function current_datetime() {
	return new DateTimeImmutable( 'now', wp_timezone() );
}