Ver Mensaje Individual
  #35 (permalink)  
Antiguo 19/11/2010, 13:11
Avatar de metacortex
metacortex
Viejo demente
 
Fecha de Ingreso: junio-2004
Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 19 años, 10 meses
Puntos: 832
Respuesta: post en mi index....

Ok aquí te va el código corregido para tu prueba.php (mira el ejemplo en mi web):

Código PHP:
Ver original
  1. <?php
  2. require_once 'wp-load.php';
  3. $var = get_posts('numberposts=3&cat=8');
  4. $html = null;
  5. foreach($var as $post)
  6.     $html .= '<h3><a href="'. get_permalink() .'">'. get_the_title() .'</a></h3><p>'. get_the_content() .'</p>';
  7. echo $html;
  8. ?>
Ya te digo lo que pondrás en el index.php de tu sitio.