Good morning,
I have the following code in page.php
<?php the_post_thumbnail('thumbnail') ?>
<section class="cuadricula_equipo">
<div class="cuadricula_fotos">
<div class="foto_1"></div>
<div class="foto_2"></div>
<div class="foto_3"></div>
<div class="foto_4"></div>
</div>
<article class="equipo_descripcion">
<div><?php the_content(); ?></div>
</article>
</section>
In the backooffice, I have a page that is called a team and inside a description. The problem that I have, that I see the images but through the template tag the_content I do not see it.
Is it possible that the_content is only for entries and not valid for pages? What would it be for pages if it is wrong?
Thank you!