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');
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');