How can I append <a class="see_more" href="<?php the_permalink();?>">SEE MORE >></a>
part to the end of the excerpt?
<div class="item_content">
<h4><a href="<?php the_permalink();?>"><?php the_title();?></a></h4>
<?php
add_filter('excerpt_length', 'df_new_excerpt_length_30');
the_excerpt();
remove_filter('excerpt_length', 'df_new_excerpt_length_30');
?>
<a class="see_more" href="<?php the_permalink();?>">SEE MORE >></a>
</div>