Show Current Date with shortcode [current_date]

WordPress PHP July 23, 2026
function current_date_shortcode() {
    $current_date = date('j F Y'); // Format for "day month year"
    return $current_date;
}
add_shortcode('current_date', 'current_date_shortcode');