Wordpress loop order

admin

Administrator
Staff member
I need to order the following wordpress loop by a custom field. Where can i set the order in this loop?

Code:
<?php 
if ( $query->have_posts() ) { ?>

<?php
while ($query->have_posts())
{
$query->the_post();
?>

// THE CONTENT 

<?php } ?>