これは奇妙な質問ですが、日付と時刻の設定にアクセスする方法を知りたいです。
Admin > Settings > General > Date Format
Admin > Settings > General > Time Format
カスタム投稿タイプのエディタビューの日付/時刻セレクタとして Any + Time jQueryプラグイン を使用しています。日付と時刻の形式を指定できます wordPressと同じ設定を使う。 編集:WordPressと同じ日付パートトークンを使用していないことがわかりました。ラメ。
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' );
WordPressのフォーマット指定子をAny + Time™指定子にマップする小さなPHP関数を書いてはどうでしょうか。それからあなたはあなたの目的を達成することができます:)