Is it possible to change X Hours Ago to date in WP Admin?
Is it possible to change X Hours Ago to date in WP Admin?
Edit:
This seems to work except for one thing. It says the date fine, but then it says ago so it shows Feb 16, 2022 ago. Any advice?
code
function wpse_time_diff_mins( $since, $diff, $from, $to ) {
return wp_date('M j, Y', $from);
}
add_filter( 'human_time_diff', 'wpse_time_diff_mins', 10, 4 );
code