I have found a few resolved topics with my needs, but the code is always a little different and I am failing at solving this.
I want to remove the tags list that appears under each post.
I do have a post page to edit (single.php).
Here's the code that I would think needs modification:
<div class="entry">
<?php the_content(__('Continue Reading »')); ?>
<?php wp_link_pages(); ?>
<p class="post-tags">
<?php if (function_exists('the_tags')) the_tags('Tags: ', ', ', ''); ?>
</div>
Any ideas would be greatly appreciated,
Luke