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?

#41138
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

On my end the dates are displayed correctly in the correct language, the plugin requests the date from WordPress core with the default date format set on the wordpress dashboard.

You can either use this option for custom date formats, or a custom code to change the date field for the results:

add_filter('asp_results', 'asp_custom_date_time');
function asp_custom_date_time($results) {
    foreach($results as $k=>&$r){
        $r->date = human_time_diff(get_the_time('U', $r->id), current_time('timestamp')) . ' fa';
    }
    return $results;
}