Thank you for your response.
I’m attempting to use the information you’ve given me, and adapt it based on another post in this support thread, but I’m receiving a “Nothing Found” result on the page. Can you let me know where I’m going wrong?
// Filter Everything sort by modified date
do_action( 'wpc_filtered_query_end', $query );
function wpb_custom_query( $query ) {
if( $query->is_main_query() && ! is_admin() && $query->is_archive() ) {
$query->set( 'meta_key', 'modified' );
$query->set( 'orderby', 'post_modified' );
$query->set( 'order', 'ASC' );
}
}
add_action( 'wpc_filtered_query_end', 'wpb_custom_query' );
Much appreciated.
I’m encountering the same error and have dozens of sites with BackWPUp connected to Dropbox. When will an update be released?