Joel Pereira Posted July 29, 2011 Share Posted July 29, 2011 Olá pessoal eu estou querendo colocar uma lista com meus últimos 3 posts do wordpress em meu site que é em html, gostaria de saber como fazer pois pesquisei muito e não encontrei solução. Andei olhando alguns sites aqui do forum e achei bem legal o da mibhost que usa bem o que eu queria kk , e o da brasilhosp também muito legal. http://www.mibhost.com/ http://www.brasilhosp.com.br/ Obrigado Link to comment Share on other sites More sharing options...
Igor B Posted July 29, 2011 Share Posted July 29, 2011 Olá pessoal eu estou querendo colocar uma lista com meus últimos 3 posts do wordpress em meu site que é em html, gostaria de saber como fazer pois pesquisei muito e não encontrei solução. Andei olhando alguns sites aqui do forum e achei bem legal o da mibhost que usa bem o que eu queria kk , e o da brasilhosp também muito legal. http://www.mibhost.com/ http://www.brasilhosp.com.br/ Obrigado Entra no msn que eu te passo o script :) Link to comment Share on other sites More sharing options...
Jordan Miguel Posted July 29, 2011 Share Posted July 29, 2011 <?php // Include Wordpress define('WP_USE_THEMES', false); require('./PASTADOBLOG/wp-load.php'); query_posts('showposts=5'); while (have_posts()): the_post(); ?> <li><a target="_blank" href="<?php the_permalink(); ?>"><?php $str = get_the_title(); echo utf8_decode($str); ?></a></li> <?php endwhile; ?> [/PHP] Link to comment Share on other sites More sharing options...
Joel Pereira Posted July 29, 2011 Author Share Posted July 29, 2011 Entra no msn que eu te passo o script :) Muito Obrigado Igor, ja ja to Online Link to comment Share on other sites More sharing options...
Joel Pereira Posted July 29, 2011 Author Share Posted July 29, 2011 <?php // Include Wordpress define('WP_USE_THEMES', false); require('./PASTADOBLOG/wp-load.php'); query_posts('showposts=5'); while (have_posts()): the_post(); ?> <li><a target="_blank" href="<?php the_permalink(); ?>"><?php $str = get_the_title(); echo utf8_decode($str); ?></a></li> <?php endwhile; ?> [/PHP] Valew Jordan você é 10 ... Link to comment Share on other sites More sharing options...
Igor B Posted July 29, 2011 Share Posted July 29, 2011 (edited) <?php // Include Wordpress define('WP_USE_THEMES', false); require('./PASTADOBLOG/wp-load.php'); query_posts('showposts=5'); while (have_posts()): the_post(); ?> <li><a target="_blank" href="<?php the_permalink(); ?>"><?php $str = get_the_title(); echo utf8_decode($str); ?></a></li> <?php endwhile; ?> [/PHP] Muito bom, Jordan :) Joel, lembrando que seu site não for em php, você deve usar um frame :) Edited July 29, 2011 by IgorBueno Link to comment Share on other sites More sharing options...
Joel Pereira Posted July 29, 2011 Author Share Posted July 29, 2011 Muito bom, Jordan :) Joel, lembrando que seu site não for em php, você deve usar um frame :) vixi é em html.... Vou usar frame mesmo então. Valew Link to comment Share on other sites More sharing options...
Recommended Posts