Fatal Error on PHP 8 (original) (raw)

global $wp_query;  

If you check that $wp_query is set before continuing, that should fix the issue.

global $wp_query;  
if ( ! $wp_query ) {  
   return;  
}