by Bartosz Romanowski
1 (1 reviews)
Date & Time Picker for Advanced Custom Fields
Date & Time Picker field for Advanced Custom Fields 4 and 5.
Tested up to WP 4.5.33 (Current: 6.9.4)
v1.1.4
Current Version v1.1.4
Updated 9 years ago
Last Update on 03 May, 2016
Refreshed 6 hours ago
Last Refreshed on
Rank
#10,429
—
No change
Active Installs
300+
-26.7%
KW Avg Position
39.5
—
No change
Downloads
7.8K
+2 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(1 reviews)
Next Milestone 400
300+
400+
163
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 14 more installs to reach 400+
Rank Changes
Current
#10,429
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
1 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(100%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| timepicker | 19 | — | Tag | 1 day ago |
| datepicker | 60 | — | Tag | 1 day ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.1.4
- Last Updated
- May 03, 2016
- Requires WP
- 3.5+
- Tested Up To
- 4.5.33
- PHP Version
- N/A
- Author
- Bartosz Romanowski
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,717
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about Date & Time Picker for Advanced Custom Fields
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.
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.
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.