The date tag has no wiki summary.
0
votes
0answers
17 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
16 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
30 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
35 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
22 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!
0
votes
1answer
12 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
55 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
30 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
45 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
45 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
27 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
52 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
27 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
61 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
26 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
79 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
34 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
244 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
381 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
58 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
319 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
44 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
125 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
116 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
55 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
56 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) ...
1
vote
1answer
60 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
98 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
52 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
200 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
167 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
293 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
178 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
85 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
184 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
88 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
1answer
162 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
106 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
57 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 ...
1
vote
1answer
26 views
date issue with category post retrival
I am trying to retrieve all posts from an rss feed from a category, and I have working code that does this. However, on one category I will only get all posts until a certain date. Any post prior to ...
0
votes
2answers
97 views
comparing dates in custom field
i have a function which should return the future event date:
function get_upcoming_exercises( $limit = -1 ) {
$args = array(
'post_type' => 'px_event',
'posts_per_page' ...
0
votes
1answer
83 views
Restrict query to last day with posts
I am using the Delicacy theme. I want to show n my homepage the posts of the current day.
But if there are no post for that day it shows "No found". I want to show posts from the last day with posts ...
0
votes
1answer
21 views
Last three posts not being put in order by date. How to fix this?
My company adds a quote of the day each day. The last three posts that I have put are not in order though. The first quote I posted 3 days ago is at the top the post I posted yesterday is under that, ...
1
vote
1answer
184 views
Author List page: Exclude based on last post date
I have a Author page that I built using this code and it works fine. However, I have several writers that range from frequent to one-time writers. I would like to seperate out writers that have not ...
0
votes
0answers
26 views
sorting links in single category by date [closed]
I would like to sort links in a single blogroll category by date. I no nothing about coding and would therefore prefer to use a small plugin or extension. Any ideas?
1
vote
1answer
123 views
Date calculations from 2 custom fields
We are struggling to find a way to calculate a time difference between two dates saved as custom fields on WP. We are actually using two different plugins:
a) Easy Content Types
b) Advanced post ...
0
votes
0answers
133 views
RSS feed shows wrong pubDate [closed]
Everything was working perfect until yesterday, my rss feed date started to show 1970-01-01.
This problem occurs on the mobile version of the site and works perfect on the website.
The sites does ...
1
vote
1answer
310 views
XML-RPC and post_date
I'm trying to set the post_date via XML-RPC and keep getting an error saying the XML isn't formatted properly. The code goes something like:
$post = get_post( $post_id );
$response = ...
1
vote
2answers
140 views
How to split <p> text text text </p> into array
I like to output and style in a shortcode, but the content that is get is the content of a page, so it's style like that
<p>2012-12-12</p>
<p>2012-6-23</p>
...
0
votes
1answer
87 views
How to change text (date) in post base on the day
So the question seem unclear, i rewrite it to hope for the best and get some great ideas.
I write a WordPress Sticky post (always first on top). In that post text there is something written like : ...