09/01/2013, 20:15
|
| | | Fecha de Ingreso: febrero-2003 Ubicación: Viña del Mar
Mensajes: 224
Antigüedad: 21 años, 8 meses Puntos: 10 | |
Respuesta: Tag <!--more--> en Wordpress no funciona Haz el siguiente cambio:
Código:
<?php
query_posts('category_name=Destacados&posts_per_page=2' );
while ( have_posts() ) : the_post(); ?>
<div id="item-destacado">
<h3 id="titulo-destacadas"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php
the_content('Leer más');
?>
</div><!-- end of item -->
<?php endwhile; wp_reset_query(); ?>
Veamos que sucede.
__________________ :pensando: Ramon Martinez... Chile :adios: |