Quantcast
Channel: User janh - WordPress Development Stack Exchange
Viewing all articles
Browse latest Browse all 40

Answer by janh for How should i sort “Last Update” Custom Column?

$
0
0

orderby will not contain the title of the column that is being clicked on, but its ID. Change your pre_get_posts filter to

function my_organization_orderby( $query ) {    if( ! is_admin() )        return;    $orderby = $query->get( 'orderby');    if( 'profile_updated_on' == $orderby ) {        $query->set('meta_key','profile_updated_on');        $query->set('orderby','meta_value_num');    }}

Viewing all articles
Browse latest Browse all 40

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>