To visualize, my final idea is to have links to externally hosted music files coming onto my page via RSS from other music blogs, but I would like to cut out all of the <p> <h1> <h2> <img> ect tags (everything but ANCHOR tags) so my page is a very simple music aggregator linking only to music files.
Code: Select all
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; ?>