• Resolved eugenefvdm

    (@eugenevdm)


    Hi there, is there a way to change the default admin sort order which appears to be publish date, to Last Modified Date?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Sayan Datta

    (@infosatech)

    Hi @eugenevdm

    It is possible. Just add this snippet to the end of your functions.php file.

    function orderby_modified_posts( $query ) {
        if( is_admin() ) {
    	$query->set( 'orderby', 'modified' );
            $query->set( 'order', 'desc' );
        }
    }
    add_action( 'pre_get_posts', 'orderby_modified_posts' );

    Thanks!

Viewing 1 replies (of 1 total)

The topic ‘How to change admin sort order’ is closed to new replies.