The date tag has no wiki summary.
2
votes
1answer
145 views
Custom Post Type Events Archive Grouped By Month
I'm currently trying to get my events listing code to print out headers by Month. So basically this:
October
event
event
September
event
event
etc...
Right now it just keeps echoing ...
1
vote
1answer
29 views
Do multiple jobs on date change without WordPress cron job
I m trying to randomize several posts on my client's site which are on different pages , everyday. So I wrote a function which returns true on date change, and if does, I randomize the post ids and ...
1
vote
1answer
43 views
If modified on same day, show only time
I have a date on each post and comment which shows the date of placement.
If I edit it, it shows me the date of the post and the modified date. That's fine, but now, I want to show only the post date ...
1
vote
1answer
74 views
Sorting a query Field by date
I have my site, which at the moment is display university open-days, at the moment they are sorting by order of page title, when actually I would prefer they sorted in order of date, soonest first, ...
0
votes
1answer
15 views
WordPress ACF - Date picker
So basically I have an events page set up with 'start date' and 'end date'.. In the back end i have Advanced Custom Fields jquery Date Picker to select these dates.
The setup of these fields are as ...
0
votes
1answer
23 views
Display custom post types by date field
I have a custom post type that is simply titles with a date field. I want to display these posts in a list in order of this date field (not date posted). So simply:
--
Sample date
Event title 1
...
0
votes
1answer
18 views
Posted date format not reflected
WP3.6, Twenty Thirteen theme
No matter which Date Format I choose, the date on actual posts are shown like this:
%A %B %e%q, %Y
Note that the actual texts look like this; not even the date values ...
2
votes
0answers
888 views
query_posts with a custom post type, a meta_query and sorting by post date?
I've searched the archives and found questions similar to what I need, but haven't found exactly what I want.
I've got a bunch of products that are sorted by a meta_key of country, and I'd like to be ...
0
votes
0answers
11 views
Query posts than have a lapse of time active
First of all, sorry guys for my poor english. OK, i wanna make a query for show posts that doesn´t passed 3 days from it publication.
I set a field for the expire date when it´s published (the time is ...
0
votes
0answers
34 views
Get last 5 days with posts
I am trying to get a solution to this question of mine
http://stackoverflow.com/questions/18487639/date-base-archive-on-wordpress-homepage
I am trying with multiple loops, if thats possible. But I ...
0
votes
0answers
34 views
Plugin only apply pages/posts after certain date?
Is there a way to make a plugin that filters out words from posts/pages only work for posts/pages that were created after a certain date? Is there a general code one could apply to it or would it ...
0
votes
0answers
31 views
Date filter for post query not filtering results when variable outside the function
I am working on the following code which should display the most popular posts that are X days old ($days = 7;)
(1) The main problem here is with my filter_where function. I want to pass the number ...
0
votes
0answers
36 views
How to save an integer as taxonomy term?
I've written a custom meta box such that taxonomy terms will always be integers (Unix timestamps), and I'd like to keep them as integers so I can sort these posts by their Unix Timestamp in the ...
0
votes
0answers
99 views
Complex WP_Query Using Post Date And Post Meta
I am using Wordpress as a CMS on a website which has standard posts, a custom advert post type and a custom event post type. The event post type has some custom meta which stores the event start date.
...
0
votes
0answers
33 views
Displaying posts by year
I'm trying to display posts on the homepage from the current year only. I am using the following:
<?php if ( is_front_page()) { ?>
<?php $current_year = date('Y'); ?>
<?php ...