/ Published in: PHP
URL: http://codex.wordpress.org/The_Loop
Para llamar posts de diferentes maneras.
Expand |
Embed | Plain Text
<?php //daLOOP :OOOOOOOOOOOO $misposteos = get_posts('offset=0'); foreach ($misposteos as $post) : setup_postdata($post); //:O ESTO ES LO QUE HACE EL TRUCO!!!!! ?> <li><a href="<?php the_permalink(); ?>"> <?php the_title() ?></a> --- <?php the_excerpt() ?></li> <?php endforeach; ?>
You need to login to post a comment.
