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á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();
});