• Custom Plugin
  • |
  • PHP
  • |
  • WordPress
  • |
  • WPCodebox

How to Add “NEW”, “UPDATED”, and “OUTDATED” Badges to Your WordPress Posts

It’s crucial to keep your readers informed about the freshness of your content. Adding badges like “NEW,” “UPDATED,” and “OUTDATED” to your WordPress posts can help visitors quickly identify the latest and most relevant content. Here’s a simple way to implement these badges on your blog.

What Are Post Badges?

Post badges are tiny labels that indicate the status of a post. In this case, we’ll add three types of badges:

  • NEW: For posts published within the last 30 days.
  • UPDATED: For posts updated within the previous 180 days.
  • OUTDATED: For posts that haven’t been updated in over three years.

How It Works

  1. Add the Code to Your Theme: First, you’ll need to add a custom function to your theme’s functions.php file. This function checks the publication and modification dates of each post and adds the appropriate badge based on the defined thresholds.
  2. Define the Thresholds: The code uses specific thresholds to determine which badge to display:
    • Posts published within the last 30 days get a “NEW” badge.
    • Posts updated within the last 180 days get an “UPDATED” badge.
    • Posts not updated in over three years get an “OUTDATED” badge.
  3. Apply the Styles: The badges are styled using CSS to make them visually distinct and appealing. Each badge has a different color:
    • NEW: Green
    • UPDATED: Blue
    • OUTDATED: Red, with a distinctive style highlighting the post’s age.
  4. Hide Outdated Badge from Search Engines: To ensure the “OUTDATED” badge doesn’t affect your SEO, it’s rendered using JavaScript, making it visible to users but hidden from search engines.

Your readers can easily see which posts are new, recently updated, or potentially outdated. This simple addition enhances user experience and keeps your content organized and easy to navigate.

Conclusion

Implementing these post badges can improve the readability and credibility of your WordPress blog. Your audience will appreciate the clear indicators of content relevance and freshness, making their browsing experience more enjoyable.


Implementation Steps

  1. Open your theme’s functions.php file. Or Add a New Snippet in WPCodeBox
  2. Add the provided code snippet.
  3. Save the file and refresh your website to see the badges in action.

Type: PHP

<?php 

// Revision 2.5
// Add this code to your theme's functions.php file
//
// Post badges are tiny labels that indicate the status of a post. In this case, we’ll add three types of badges:
//     NEW: For posts published within the last 30 days.
//     UPDATED: For posts updated within the previous 180 days.
//     OUTDATED: For posts that haven’t been updated in over three years.
//     How It Works
//     Add the Code to Your Theme: First, you’ll need to add a custom function to your theme’s functions.php file. This function checks the publication and modification dates of each post and adds the appropriate badge based on the defined thresholds.
//     Define the Thresholds: The code uses specific thresholds to determine which badge to display:
//     Posts published within the last 30 days get a “NEW” badge.
//     Posts updated within the last 180 days get an “UPDATED” badge.
//     Posts not updated in over three years get an “OUTDATED” badge.
//     Apply the Styles: The badges are styled using CSS to make them visually distinct and appealing. Each badge has a different color:
//     NEW: Green
//     UPDATED: Blue
//     OUTDATED: Red, with a distinctive style highlighting the post’s age.
//     Hide Outdated Badge from Search Engines: To ensure the “OUTDATED” badge doesn’t affect your SEO, it’s rendered using JavaScript, making it visible to users but hidden from search engines.
//     Your readers can easily see which posts are new, recently updated, or potentially outdated. This simple addition enhances user experience and keeps your content organized and easy to navigate.

function custom_post_badges($content) {
    if (is_single() && is_main_query() && get_post_type() == 'post') {
        $post_date = get_the_date('U');
        $updated_date = get_the_modified_date('U');
        $current_date = current_time('timestamp');

        $new_days = 30; // Number of days for "NEW" badge
        $updated_days = 180; // Number of days for "UPDATED" badge
        $outdated_years = 3; // Number of years for "OUTDATED" badge

        $new_threshold = strtotime("-{$new_days} days", $current_date);
        $updated_threshold = strtotime("-{$updated_days} days", $current_date);
        $outdated_threshold = strtotime("-{$outdated_years} years", $current_date);

        $badge = '';

        if ($post_date > $new_threshold) {
            $badge = '<span class="badge new-post">NEW</span>';
        } elseif ($updated_date > $updated_threshold) {
            $badge = '<span class="badge updated-post">UPDATED</span>';
        } elseif ($updated_date < $outdated_threshold) {
            $badge = '<div id="hidden-content"></div><script type="text/javascript">
                        document.getElementById("hidden-content").innerHTML = \'<div class="badge outdated-post">This post might be outdated</div>\';
                      </script>';
        }

        if ($badge) {
            $content = $badge . $content;
        }
    }

    return $content;
}
add_filter('the_content', 'custom_post_badges');

function custom_post_badges_styles() {
    echo '
    <style>
        .badge {
            display: inline-block;
            padding: 5px 10px;
            margin: 10px 0;
            font-weight: bold;
            color: #fff;
            border-radius: 5px;
            text-align: center;            
        }
        .new-post {
            background-color: #28a745;
        }
        .updated-post {
            background-color: #17a2b8;
        }
        .outdated-post {
            display: block;
            width: 90%;
            margin: 10px auto;
            text-align: center;
            background-color: #dc3545;
            color: #fff;
            padding: 10px;
            font-weight: bold;
        }
    </style>
    ';
}
add_action('wp_head', 'custom_post_badges_styles');


More Codes

Automatically Assign ALT Text to Images in WordPress Posts If They are Missing

Automatically assign ALT text to images in WordPress posts with WPCodeBox. Improve SEO and accessibility easily with this PHP script!

How to Add “NEW”, “UPDATED”, and “OUTDATED” Badges to Your WordPress Posts

Enhance your WordPress posts with “NEW,” “UPDATED,” and “OUTDATED” badges! Keep your content fresh and organized for better user experience.

Enable Auto Update WordPress Plugins and Themes

Discover how to enable auto updates for WordPress plugins and themes with WPCodeBox. Add PHP snippets, save, and enjoy hassle-free updates!