如何获取要在模板中使用的日期格式和时间格式设置?


24

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

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

我正在使用Any + Time jQuery插件作为自定义帖子类型的编辑器视图的日期/时间选择器。它允许您使用与WordPress相同的设置来指定日期和时间格式。编辑:事实证明它没有使用与W​​ordPress相同的日期部分令牌。瘸。

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()吗?

Answers:


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

谢谢,结果证明jQuery插件毕竟使用不同的日期和时间标记来指定格式。因此,尽管这并不能解决我眼前的问题,但感谢您与我分享未来的利益。
jessegavin

非常好,非常感谢...不知道我能做到这一点:)
Sagive SEO 2012年

10

您需要get_option()。特别是:

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.