Estoy añadiendo a mano los artículos de mi web en la home tal que así:
Código PHP:
<?php
query_posts('posts_per_page=4');
while(have_posts()) : the_post(); ?>
<div class="bloque wpb_column vc_column_container vc_col-sm-4">
<div class="imagenposthome"><?php the_post_thumbnail(); ?></div>
<div class="bloquetexto">
<p><?php the_category(); ?></p>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
</div>
</div>
<?php endwhile; wp_reset_query(); ?>
¿Alguna ayuda? ¡Gracias!