最合适的回答,由SO网友:Frank P. Walentynowicz 整理而成
将此代码添加到functions.php
您的活动主题:
function wpse_posts_list_date_format( $time, $post ) {
return $post->post_date;
}
add_filter( \'post_date_column_time\', \'wpse_posts_list_date_format\', 10, 2 );
回调函数接收4个参数,但我们只需要2个。