问题描述

这是一个奇怪的问题,但我想知道如何访问日期和时间设置

Admin > Settings > General > Date Format
Admin > Settings > General > Time Format

我使用 Any+Time jQuery plugin 作为自定义帖子类型的编辑器视图的日期/时间选择器。它允许您使用 WordPress 的相同设置指定日期和时间格式。编辑:结果它不会使用与 WordPress 相同的 Date 部分令牌。瘸。

http://www.ama3.com/anytime/#AnyTime.Converter.format

理想情况下,我想做这样的事情

<?php
  $wpDateFormat = get_admin_settings('DateFormat');
  // $wpDateFormat now holds something like "F j, Y"
?>

<script>
    $("#datetime").AnyTime_picker({
      format: '<?php echo $wpDateFormat ?>'
    );
</script>

我不知道是… 有这样的功能像 get_admin_settings()

最佳解决方案

get_option('date_format');
get_option('time_format');

次佳解决方案

你想要 get_option() 。尤其是:

$date_format = get_option( 'date_format' );
$time_format = get_option( 'time_format' );

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。