Custom format [post_date] shortcode
-
Hi,
I’d like to know if there is a way to format the default shortcode [post_date] in french format (dd/mm/yyyy hh:ii:ss).
I tried to create my own filter but it doesn’t work.
add_filter('wp_mail', function($args) { $date = date_create($args['post_date']); $newdate = date_format($date, 'd/m/Y H:i:s'); $args['post_date'] = $newdate; return $args; }, 1, 1);
Thanks for your help!
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Custom format [post_date] shortcode’ is closed to new replies.