Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/09/2013, 11:16
clarova
 
Fecha de Ingreso: mayo-2012
Mensajes: 25
Antigüedad: 11 años, 10 meses
Puntos: 1
Respuesta: Contenido desplegable

Muchas gracias, si era lo que decias.
Por si a alguien le interesa se me ha quedado así:

Código:
<div class="item">
	<?php the_post_thumbnail('medium'); ?>
	<h3 class="title"><?php the_title(); ?></h3>
	<?php the_excerpt(); ?>
	<div class="more">
		<div class="open"><span class="button button_small button_green">Leer m&aacute;s</span></div>
		<div class="close" style="display:none;"><span class="button button_small button_green">Ocultar</span></div>	
		<div class="content"><?php the_content(); ?></div>
	</div>
</div>


$('.more').click(function() {
	$(this).children('.open').toggle();
	$(this).children('.close').toggle();
	var content = $(this).children('.content');
	content.toggle();
});