Remove the month and year from a WordPress Date?

You’ll need to write your OWN function that will take the post_date and return it reformatted to the style you’re looking for.

function my_date($input_date) {
   return date("S", strtotime($input_date));
}

And then you would call it within your Pods Template like

{@post_date, my_date}

All rights goes to Jim True. More infomations : https://pods.io/forums/topic/date-formatting-using-magic-tags/