Quando fizemos o index.php utilizando o type_post para apresentar as postagens feitas em "Imóveis".
index.php
...
<?php
$args = array('post_type' => 'imovel');
$loop = new WP_Query( $args );
if($loop -> have_posts()){
while($loop->have_posts()){
$loop->the_post();
?>
...
Todavia, em nossa página single.php usamos
<?php
if(have_posts()){
while(have_posts()){
the_post();
?>
Por que razão não usamos o mesmo do $loop->have_posts() ... em single.php também, visto que estamos obtendo postagem do type_post imovel?