Cita:
Iniciado por metacortex Suponiendo que tu blog se encuentre en el directorio
/blog/
Código PHP:
Ver original<?php
include 'blog/wp-load.php';
$consulta = new WP_Query('tus parámetros...');
if( $consulta->have_posts() ):
while( $consulta->have_posts() ):
$consulta->the_post();
?>
<h3><?php the_title() ?></h3>
<p><?php the_content() ?></p>
<?php
endwhile;
wp_reset_postdata();
else:
?>
<p>No hay entradas</p>
<?php endif; ?>
Perdona mi ignoracia, pero a que te refieres con "TUS PARAMETROS"