have_posts()) {
echo '
'. __('Rooms of', 'eagle-booking').' '.single_term_title("", false).'
';
while ( $eb_branches_query->have_posts() ) : $eb_branches_query->the_post();
/**
* Include Room
*/
include eb_load_template('search/room.php');
endwhile;
} else {
echo '
' .__('There are no rooms for this hotel branch', 'eagle-booking').'
';
}
wp_reset_query()
?>