Ok so when I try to search the blog and the search produces the html within the pages like links or images etc. I want the searches to display the content if anyone could help it would be appreciated. Here whats in my search.php
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<h1>
<?php the_title(); ?>
</h1></a>
<p>
<?php the_excerpt('Read more »'); ?>
</p>
<div class="links"> Author:
<?php the_author() ?>
<?php the_time('m jS, Y') ?>
in
<?php the_category(', ') ?>
<?php edit_post_link('Edit','',' '); ?>
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 align="center">Not Found</h2>
<p align="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
<p class="pagination">
<?php next_posts_link('« Previous Entries') ?>
<?php previous_posts_link('Next Entries »') ?>
</p>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>