• Resolved Martin Kou

    (@martin-kou)


    Hello, can somebody help me… how can I change the date format from 1. Jan 2015 to 1. 01. 2015… I have this setup in wordpress default, but there are few places in this theme where it is still as first option. website is here: https://bezvamama.cz/
    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Martin. Welcome to the Hueman forum. The theme uses a call to the WP function “the_time()” to display the dates, but it doesn’t use the WP Date Format option for all calls. It was designed that way so in places where there is limited space, like sidebar widgets, the date would be in shorthand format. Try using this function in a child theme functions.php file to set all dates to use the WP Date Format:

    /* use WP Date Format option for all post dates */
    add_filter('the_time', 'my_time_filter');
    function my_time_Filter(){
      $my_date = get_the_time(get_option('date_format'));
      return $my_date;
    }

    Hi @

    You can look this for reference.

    Thank You!!1

    Thread Starter Martin Kou

    (@martin-kou)

    Thank you for help, php filter works!!
    Martin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘change date format’ is closed to new replies.