@charset "utf-8";
/*
Template: jstorkse
Theme Name: STORK SE Child
Theme URI: https://open-cage.com/stork-se/
Version: 1.0.0
Author: opencage
Author URI: https://open-cage.com/
*/

function storkse_order_by_modified_date( $query ) {
  if ( is_admin() || ! $query->is_main_query() ) return;

  if ( is_home() || is_front_page() || is_category() || is_tag() || is_author() || is_archive() ) {
    $query->set( 'orderby', 'modified' );
    $query->set( 'order', 'DESC' );
  }
}
add_action( 'pre_get_posts', 'storkse_order_by_modified_date' );

