How do i remove the timestamp from each post in the latest news widget but keep the date
Hey kilimats,
Please check this thread https://kriesi.at/support/topic/latest-news/#post-646514 If you have any questions please revert back to us with a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
Vinay
thanks i tried your code and the last one at the bottom shown below, but in both case the date for all post became the same day, it did remove the time though, see private note for example
add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
function change_avia_date_format($date, $function) {
$output = date( 'Y-d-m');
return $output;
}
Hi!
Please use the code as following
add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
function change_avia_date_format($date, $function) {
$output = get_option('date_format');
return $output;
}
Best regards,
Yigit
magical thanks !