在wordpress中获取默认日期格式
Get default date format in wordpress
对于 wordpress 插件,我需要在 options->general 中设置默认日期格式。我需要在 Carbon 库中使用的格式字符串(如 'Y-m-d H:i:s')。在文档中我没有找到与此相关的任何内容。
日期和时间格式作为选项单独存储。
使用 get_option()
检索值。
例如
$date_format = get_option( 'date_format' ); // e.g. "F j, Y"
$time_format = get_option( 'time_format' ); // e.g. "H:i:s"
对于 wordpress 插件,我需要在 options->general 中设置默认日期格式。我需要在 Carbon 库中使用的格式字符串(如 'Y-m-d H:i:s')。在文档中我没有找到与此相关的任何内容。
日期和时间格式作为选项单独存储。
使用 get_option()
检索值。
例如
$date_format = get_option( 'date_format' ); // e.g. "F j, Y"
$time_format = get_option( 'time_format' ); // e.g. "H:i:s"