How to Sort by Date When Using d-m-Y Format
You need to extend the MySQL-Query directly, as you have to use the MySQL-Function STR_TO_DATE in order to not mess with the pagination etc. You should be able to achieve this with a change in your pre_get_posts like this: add_action( ‘pre_get_posts’, ‘courses_columns_orderby’ ); function courses_columns_orderby( $query ) { if( ! is_admin() ) return; $orderby = … Read more