이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Date & Time Picker for Advanced Custom Fields

설명

This is an add-on for Advanced Custom Fields and Advanced Custom Fields Pro, which allows to create a Date and Time Picker field.

기능

  • Create a date and time picker field
  • Create a time picker field (without a date)
  • Two time picker types: slider (only in ACF 5 – looks better) and dropdown list (takes less space)
  • Define date and time format for each field

호환성

This ACF field type is compatible with ACF 5 (Pro) and ACF 4.

크레디트

The plugin uses Timepicker Addon for jQuery UI Datepicker by Trent Richardson, licensed under the MIT license.

Icon made by SimpleIcon from Flaticon is licensed by CC 3.0 BY.

설치

  1. Copy the acf-date-time-picker folder into your wp-content/plugins folder
  2. Activate the Date & Time Picker for Advanced Custom Fields plugin via the plugins admin page
  3. Create a new field via ACF and select the Date & Time Picker type
  4. Please refer to the description for more info regarding the field type settings

FAQ

How do I format the time?

You can format the time by creating a mask using the following characters:

H   Hour with no leading 0 (24 hour)
HH  Hour with leading 0 (24 hour)
h   Hour with no leading 0 (12 hour)
hh  Hour with leading 0 (12 hour)
m   Minute with no leading 0
mm  Minute with leading 0
s   Second with no leading 0
ss  Second with leading 0
t   a or p for AM/PM
T   A or P for AM/PM
tt  am or pm for AM/PM
TT  AM or PM for AM/PM

The default time format is HH:mm.

You can read more about formatting the time here.

How do I format the date?

You can format the date by creating a mask using the following characters:

d   day of month (no leading zero)
dd  day of month (two digit)
o   day of the year (no leading zeros)
oo  day of the year (three digit)
D   day name short
DD  day name long
m   month of year (no leading zero)
mm  month of year (two digit)
M   month name short
MM  month name long
y   year (two digit)
yy  year (four digit)

The default date format is yy-mm-dd.

You can read more about formatting the date here.

How do I format the date and time to display it on the frontend?

The plugin saves the date and time in the following format: YYYY-MM-DD hh:mm:ss (for example 2016-04-01 16:57:00). This is the format used by WordPress in wp_posts table, so it’s easy to use this field value in custom meta queries. However the Advanced Custom Fields API returns the date and time in the format set in the field settings, so you can just use the_field() or get_field() function in your theme.

To display the date and time in a different format, you can use strtotime() and date() functions, for example:

echo date('d/m/Y g:i a', strtotime(get_field('date_and_time_field')));

You can also use format_value filter to format the field value.

후기

모든 1 평가 읽기

기여자 & 개발자

“Date & Time Picker for Advanced Custom Fields”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

“Date & Time Picker for Advanced Custom Fields”(이)가 1 개 언어로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Date & Time Picker for Advanced Custom Fields”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.1.4 (2016-05-03)

1.1.3 (2016-04-30)

  • [Fixed] Do not try to convert empty string to date.

1.1.2 (2016-04-27)

  • [Fixed] Transparent background of datepicker.
  • [Fixed] Do not set the current time as a default value.
  • Temporary removed the slider timepicker for ACF 4.

1.1.1 (2016-04-10)

  • Updated .pot file.
  • Polish translation.

1.1.0 (2016-04-06)

  • Option for disabling past dates in datepicker.

1.0.0 (2016-04-02)

  • Initial release.