Incrustar una página dentro de una página | Programar Plus

<?php $recent = new WP_Query("page_id=**ID**"); while($recent->have_posts()) : $recent->the_post();?>
       <h3><?php the_title(); ?></h3>
       <?php the_content(); ?>
<?php endwhile; ?>

El código anterior se puede utilizar dentro el bucle de página normal. Reemplace **ID** con el ID de la página que desea insertar.

(Visited 5 times, 1 visits today)