Order Posts by meta value AND published date

I want to order WP posts by meta key named “sort_date” and if it doesn’t exist it should use the post’s published date to order posts. Below is the code i am currently using function pre_get_posts_custom($wp_query) { if ( !is_admin() && $wp_query->is_main_query() && !is_page() ) { $meta_key = ‘sort_date’; $wp_query->set( ‘post_type’, array( ‘post’, ‘article’ ) … Read more