Hi, erni74, you can adjust the date format in the following code by reading this page here: https://www.w3schools.com/php/func_date_date_format.asp
You would modify the contents within this string: 'F j, Y g:i a'
This code can be entered into your functions.php file or using a plugin such as Code Snippets, https://ww.wp.xz.cn/plugins/code-snippets/
add_filter( 'the_time', 'change_date_format', 10, 2 );
function change_date_format( $get_the_time, $format ) {
return get_post_time( 'F j, Y g:i a' );
}
Thread Starter
erni74
(@erni74)
THX Ian,
but what if i need it in German, instead 1. Februar 2021 i need 1. Februar 2021?