The date tag has no wiki summary.
0
votes
1answer
23 views
Added Date Filter To Pupular Posts Query
I have the following query, which was put together with snippets in the functions.php file.
<?php
$popularpost = new WP_Query( array(
'posts_per_page' => 5,
'meta_key' => ...
0
votes
0answers
16 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
1answer
18 views
How to display an icon when a new post is published and then remove it when a specific time past?
Every time i publish a new post i want to display an icon like a badge (NEW) and after a specific time it will disappear.
Lets say i publish a new post and i want to display that it is a new post. So ...
0
votes
2answers
30 views
Update post date of page when Visitor access that page?
How to update post date of page to real time when Visitor access that page?
Example: I write a post on May 28, 2013. And now, when I visit that post, it will change may 28 to June 8.
How to do this?
...
-1
votes
1answer
26 views
How to wrap a span tag inside a PHP date function [closed]
I need to wrap a span tag for each month, day and year attributes on this simple wordpress function that echoes the date of an event.
<?php echo get_start_date( null, false, 'M d Y'); ?>
-2
votes
0answers
16 views
Same date not showing on post [closed]
I am doing some dev work for a client who has been using WordPress. He has contacted me because his posts do not show the correct date, it shows a day in March for most posts, however today it show 5 ...
0
votes
1answer
46 views
Show all 12 months regardless they have posts
I need to show all months for a year for an archives page. All 12 months must be shown regardless of whether or not there are posts published for a month. Like this:
Year: Jan Feb Mar Apr May Jun Jul ...
0
votes
1answer
19 views
Make datestamp for status updates show time
I have an installation of Wordpress 3.6 running on my server. Playing around with it, I found that 'status updates' don't show the time posted:
Here's the thing: I want the time there too. ...
1
vote
1answer
26 views
Unable to set right time in admin and frontend template
When I run a simple php file called test.php (placed in the root of the wp installation) that contains something like that:
<?php echo date('H:i:s'); ?>
The result is right: 15:30:00 and the ...
0
votes
1answer
43 views
Changing the post date without causing 404 error
We have permalink structure based on date (like 'www.mysite/2012/05/27/postname').
Some times there are some posts that we need to be shown the first, so we change they date.
The problem is, that by ...
6
votes
1answer
141 views
How to integrate get_post_time with date_i18n function?
I have date format and would like to translate to another language with date_i18n function how can I integrate with get_post_time here is my code :
$time = get_post_time('F j, Y', ...
0
votes
0answers
35 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
1answer
19 views
Switch Categories on a Specific Date?
I usually like to provide a code I've started with and have others help me out with it - but this is one where I don't even know where to begin.
I would like to be able to set a date on posts in ...
0
votes
2answers
50 views
How to output comments number of a post per day?
I have a question about the comment numbers in a post... For now, I can output the total number of a comment inside a post outside the loop. That's cool enough, but I want to get show the comment ...
1
vote
1answer
47 views
Post preview gives 404 when permalinks are purely date based
I have an issue pertaining specifically to the situation in which permalinks are set to be based only on publication date. My permalink structure is as follows:
/%year%%monthnum%%day%/
When I try to ...
1
vote
2answers
27 views
Display post date as 04/26/2013
I want to modify the date display of the post entries from current format:
April 26, 2013
to this:
04/26/2013
Where in the code can I make this change?
Thank you in advance!
1
vote
1answer
20 views
Changing the post date and time with function
What function can be used to update a post's post date and time to the current date & time?
0
votes
1answer
112 views
month name translation
I use the birdtips theme and it formats the post date as
$birdtips_posted = date(__('Y. F j.', 'birdtips'), strtotime(get_the_time("Y-m-d")));
where Y. F j. is already rewritten to reflect my ...
0
votes
1answer
32 views
Format Date for Manual Insertion into post
I have the following $mydate = "26 January, 2012, 5:05 AM";
I want to format this date properly so I can insert it into a post_date. Is there a simple way to do it?
$post_ information = array (
...
2
votes
2answers
65 views
Get date of last update outside of loop
I'm trying to figure out how to display the date that a post was last updated outside of the loop. I'm able to display the published date using get_the_time() but there doesn't seem to be a "loopless" ...
0
votes
1answer
67 views
Wrong date returned by get_the_time
I have this line of code :
$registration_date = get_the_time('F j, Y').' at '.get_the_time('g:i a');
I just ran this on my BlueHost hosted website and it returned : January 29, 2013 at 12:54 pm
...
0
votes
0answers
28 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 ...
0
votes
1answer
54 views
Checking if field is set before comparing with meta_query in query_posts?
I have a query set up to compare the start and end dates for some custom fields. The start date is required for the post; however, the end date is not. This causes some issues with the following:
...
0
votes
1answer
33 views
Generate daily archive whenever any post type is added
We have an issue with our date archive in WordPress, where our daily archive (example address www.xxx.com/2013/01/09) is only generated when a post from the default post type is added. Any day where a ...
0
votes
0answers
79 views
Show metabox date field in standard format, with UNIX timestamp in database [closed]
I've setup an Event custom post type with a metabox to capture the event date. I'm converting the date to a UNIX timestamp using strtotime, and I've setup the function to convert the timestamp to a ...
0
votes
2answers
29 views
Plotting posts on a graph
Here is what i want to do:
For a specific date i want the number of posts from a certain tag.
For example: on 14th March i have a certain number of posts tagged "jazz".
I want to plot that number on ...
0
votes
2answers
153 views
How to get date for each post?
while (have_posts()) : the_post();
//some html
<li class="icon-date"><?php the_date('Y-m-d');?></li>
<li class="icon-time"><?php the_date('H:i:s');?></li>
With ...
0
votes
1answer
43 views
Query posts from current year
I don't quite get why this isn't working. I'm trying to use the following to only show posts from the current year on the front page:
<?php query_posts( "&year=$current_year&order=DESC"); ...
0
votes
2answers
333 views
WP_Query most viewed posts, in multiple Post Types, last 30 days, excluding a specific taxonomy term
OK so I'm about 90% done, the only part that keeps breaking is when I try to exclude a specific taxonomy term.
Break down:
Sorting: ('v_sort' => 'views') This is being done via the popular ...
1
vote
1answer
406 views
How to sort CPT by custom meta value (date), and return posts month by month
For future reference:
I am using the great Meta Box Plugin to help expedite meta box creation for my custom post types.
My goal:
To build a highly customizable events section closely resembling a ...
0
votes
1answer
91 views
Order post by date with ACF
I implemented a custom post type for a class post. Now every post has a additional date picker called "date_event", my question is: Any have ideas how can i order the post for the last date of the ...
0
votes
1answer
405 views
Advanced Custom Fields and date picker, show posts only if the day is today no matter the year
I've created a site made just with custom fields about famous people in sport.
In the post page I've a born date and a death date field using the data picker.
What I'm trying to achieve is to show ...
0
votes
1answer
49 views
Display Today's date outside the loop?
Is there any way to display the Today's date outside any loop/post using WordPress date/time function instead of using the PHP date() function?
I'm using the PHP date() function but it does not ...
0
votes
1answer
179 views
How to get date of post when using wp_get_recent_posts()?
I get the latest posts this way:
$args = array( 'numberposts' => '2' );
$recent_posts = wp_get_recent_posts( $args );
Then I loop through them and get information about the post this way:
...
2
votes
2answers
119 views
Rearranging posts based on categories
Hey everyone on Stackexchange!
I'm trying to find a way to prioritize posts based on a category in a loop, which is sorted by dates. All posts are grouped under their respective dates. The date ...
4
votes
1answer
57 views
Metabox date month number to word
I use custom metabox with date (day, month and year). The problem is when I try to transform date number to date word - for example 10 to be October. I use this code:
function ...
0
votes
2answers
64 views
Date comparison : which date format?
I have a CPT for events. I need to display future events for people to register, while hiding past events.
What is the easiest date format for both (1) entering date when creating new event and (2) ...
2
votes
1answer
94 views
How to order posts of a custom post type by date DESC in dashboard Admin?
I created a new post type named "Video".
When I create post for the post type, posts is ordered by title ASC.
Is it possible to order posts by date DESC please ?
register_post_type('Videos', ...
0
votes
1answer
128 views
How to get posts published on the latest date?
Is there a way of getting all posts published on the latest date? It might not necessarily be today, it might be yesterday or the day before yesterday or even a day last week.
1
vote
2answers
61 views
Display commenter's registration date on comments?
Is there any way to display a user's (registered) registration date on the comment.
Lets say i have a written an article, registered users A, B, C and D left a comment on my article.
I can display ...
1
vote
1answer
248 views
After wp_insert_post(), date_i18n() and date() outputs are adjusted to GMT
I am having a very peculiar issue on a customer's server (vps). The code below works just fine on my servers. Basically, a specific unix timestamp is formatted correctly and as soon as ...
8
votes
2answers
181 views
Set post date before 1970
I have a custom post type called books. The books publication date is from between 1700 and 1900.
I want to set the post date to these dates(so i can query the results sorted by year) but i can't ...
0
votes
1answer
364 views
Order by custom field date?
I've created a category "Expire Soon" and i want to insert and sort the posts by custom field "expiration_date".
I use this code but the posts are sorted by custom field "expiration_date" but not by ...
0
votes
1answer
216 views
show User Registration Date in Wordpress
i want to show user registration date like Member since: 15,dec 2012.
I have a code
<?php echo date("M Y", strtotime(get_userdata(get_current_user_id( ))->user_registered)); ?> but it show ...
0
votes
1answer
101 views
Arrange posts by date in front page
I have code to show the 5 last posts from every category on the front page. However, at the moment they are ordered category by category. Is it possible to order them by post date, but still have 5 ...
0
votes
1answer
254 views
Display posts where date field matches current month?
I have a loop which displays all the posts of the "events" post type on my site. Each of these posts has a custom date field "event_date", which I sort the display of the loop by.
I would like to ...
1
vote
1answer
93 views
Escaping date string in url with wordpress
I am creating a Wordpress page that searches through posts based on a date variable that is set through a _GET variable. I want to make sure that I am doing this in the best way possible and that I ...
1
vote
2answers
195 views
Archive listing of posts by publish year (multiple years)
I have an archive page showing all blog posts (in a specific category). With a growing number of posts, I want to separate these by publish year. For example (simplified), I'd like the following:
...
0
votes
1answer
137 views
Set a custom post type's title and slug to match the current date
I have seen similar questions asked, but mine is a little different. I want to register a post type called 'minutes' that doesn't allow you to add a title or a slug, but when you publish (or autosave) ...
1
vote
2answers
66 views
Displaying Archives List
I'm displaying list or archives using
<?php get_archives('monthly', '', 'html', '', '', FALSE); ?>
and my list displays
December 2012
November 2012
etc
However I would like to format ...
