I’m aware there’s information between these 2 lines. My index looks like this:
<? include(“/home/mfpina/public_html/header.php”); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_date(”,'<div class=”data”>’,'</div>’); ?>
<br>
<div class=”title”><?php the_title(); ?></div>
<?php the_content(__(‘(more…)’)); ?>
<div class=”comment”>
Marya @ <?php the_time() ?> |
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘Comentar? (0)’), __(‘Coment??rio (1)’), __(‘Coment??rios (%)’)); ?>
<br>
<div class=”meta”><?php _e(“Categoria:”); ?> <?php the_category(‘,’) ?></div>
</div>
<br><br>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« P??gina anterior’), __(‘Pr?3xima P??gina »’)); ?>
<? include(“/home/mfpina/public_html/footer.php”); ?>
The loop is there and, still, it doesn’t load.