This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: The date in printed in english, how to show it in the site language?

Home Forums Product Support Forums Ajax Search Pro for WordPress Support The date in printed in english, how to show it in the site language? Reply To: The date in printed in english, how to show it in the site language?

#41134
kyriankyrian
Participant

Apart from the language issue,
I’d like to convert the dates to human-readable format

I have used this code to make this change site wide, it works in all posts and pages but not for the search results

// Convert all dates to human-readable format

function custom_time_ago() {
    return human_time_diff(get_the_time('U'), current_time('timestamp')) . ' fa';
}
add_filter('the_time', 'custom_time_ago');
add_filter('get_the_date', 'custom_time_ago');
add_filter('the_modified_time', 'custom_time_ago');