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?
January 29, 2023 at 10:04 am
#41138
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;
}