I was able to fix it by adding this to this-or-that.php
$thisthat_query = new WP_Query(array(
‘post_type’ => $posttype,
‘meta_key’ => ‘thisorthat_rating’,
‘meta_type’ => ‘NUMERIC’,
‘orderby’ => ‘thisorthat_rating’,
‘category_name’ => ”,
‘posts_per_page’ => $length,
$taxonomy => $category
));
Bolded is what I added. Fixed.