Ver Mensaje Individual
  #10 (permalink)  
Antiguo 26/02/2013, 09:56
guns1987
 
Fecha de Ingreso: octubre-2008
Ubicación: Santiago de Surco - Lima - Peru
Mensajes: 39
Antigüedad: 16 años, 2 meses
Puntos: 1
Respuesta: Insertar una pagina de wordpress mediante php

ya lo solucione agrege este codigo
Código PHP:
<?php $recent = new WP_Query("page_id=6704"); while($recent->have_posts()) : $recent->the_post();?>
       <h3><?php the_title(); ?></h3>
       <?php the_content(); ?>
<?php 
endwhile; ?>
con este codigo atrapo el id de la pagina e inserto el contenido con the_content();