Filter the content of post_class()
:
add_filter( 'post_class', function( $classes ) {
if ( is_singular() )
return $classes;
// now minus last mod time in seconds
$diff = time() - mysql2date( 'U', $post->post_date );
if ( DAY_IN_SECONDS <= $diff )
$classes[] = 'new-post';
return $classes;
});
Now, in your loop, use post_class()
, and you get an extra class you can use in your stylesheet:
.new-post {
padding-left: 20px;
background-image: url(new.png) left top no-repeat;
}
Related Posts:
- How to display an icon when a new post is published and then remove it when a specific time past?
- How to get posts published between a date and today?
- How to get post creation date?
- Changing the post date and time with function
- Is it possible to Schedule Attachments in WordPress?
- using wp_update_post on save_post
- How to put last edited entry on top of the blog-post list?
- Query posts from current year
- Update existing post dates to random dates
- featuring old articles without messing up with the archive
- How to output comments number of a post per day?
- Human Time Diff, change mins to minutes
- Display custom post types by date field
- How can I display a specific user’s first published post?
- Can wordpress differentiate between added and updated posts?
- Fetch posts from current week (Sunday to Saturday)
- How to set post expiration date and time and move the page to archive after expiration [closed]
- Display post from specific date
- Get random posts between specific dates / of specific age
- XML-RPC and post_date
- Automatically republish old posts
- How can I replace the text at the top of a custom column into a icon?
- Add icon/badge next to posttitle of specific category
- Replace ‘published on date’ with ‘modified on date’ on Posts
- pre_get_posts query between 2 dates (date stored in custom post meta)
- How can I show many posts an author has per week?
- If modified on same day, show only time
- Update all comments time to random dates?
- WordPress Sidebar menu for posts based on date – guidance needed
- date issue with category post retrival
- How to get date of post when using wp_get_recent_posts()?
- Worpdress function for difference dates
- Changing default WP-Site creation date
- How to get posts published on the latest date?
- What date to use as a post date? date_gmt or modified_date_gmt
- How to update all posts at once?
- Assigning Two Different Post Dates For Single Post
- Using system date format
- Modify this line to give alternate format date?
- Post: how to set created date after post has been published [closed]
- Add “Posted on” to post date
- Auto update post title and slug when post status is changed
- wp_query if have posts show date but not in loop
- Retrieving posts by their date and category
- Date is wrong on ‘all posts’ page
- Getting an extra post’s meta data?
- Plotting posts on a graph
- Order posts by date
- Get post publishing date from within custom HTML block
- Post date automatically +100 years into the future
- Change Old WordPress Post Date Year
- My website is showing today’s date instead of published date since db migration to a new wordpress
- How can I change the date format of the revision list?
- How to remove the icons corresponding to “by” (author) and “date” from posts?
- How can get the last post date of the user?
- How to get post creation date?
- Need to display a Jan 1st post as the site’s front page on Jan 1st, and Jan 2nd post as front page on Jan 2nd etc
- Set a post expiration and delete a post when expirate
- Display Updated Date Instead of Published Date
- How do you update post date (year only) in a separate custom field?
- How do i search post by jquery datepicker?
- How to hide meta from search result only on pages?
- How do I display posts ordered by a date custom field?
- Compare date of user’s last posts
- Adding post date to ACF field
- How can I set and update the the_date according to a custom field of the post
- Query post for today, if no post get the previous one
- Set post beginning date and final date
- Skip posts, but keep posts per page
- How to organise post by category and date
- Display metabox with date
- Last three posts not being put in order by date. How to fix this?
- How to change text (date) in post base on the day
- How to display a certain template element only for posts published within certain time range?
- the_time() cannot be placed correctly
- How to remove a date from wordpress post
- how show post date for specific post?
- Exclude posts by date – related post
- Accessing the post content with WP_Query
- How do I use inline SVG in WordPress
- Add a special filter link to All Posts in admin
- Create pretty permalink for a post knowing the permalink structure
- jQuery inluclude still seems ncessary for script to work within post
- White Blank Page when Updating and Publishing Page/Post
- Why is querying posts messing up my pages?
- WordPress Loop – Next 3 Posts
- How to do set post permalinks using 6 digit random unique function?
- Issue where WP Featured Image will not display
- Display post category in foreach loop
- insert a warning message into post-new.php
- How do I disable the “by author” hyperlink on posts?
- Regarding Posts
- Blog featured images disappeared on my homepage
- Manipulating images inside post content
- How to create frontend Post filter using meta query
- How can add metabox for post of specific category before save post and after save post [duplicate]
- Posts page template: How can I edit the markup for this?
- Should new posts already have tags?
- Undefined Function Fatal Error with Shortcode [closed]
- How to sort posts alphabetically based on a specific parent category