What's wrong? I did the function to give excerpt in the posts of wordpress and import to another site, however it is not cutting with what I defined.
Can anyone give a light?
<?php while (have_posts()): the_post(); ?>
<div class="moldG">
<div class="thumbsG">
<?php the_post_thumbnail( array(300,266) ); ?>
</div>
</div>
<div class="wptexto">
<a class="blog" href="<?php the_permalink(); ?>" target="_blank"><?php the_title(); ?></a>
<?php the_excerpt();
if ( is_category() || is_archive() ) {
the_excerpt();
}
function new_excerpt_length($length) {
return 240;
}
endwhile; ?>
</div>
</div>