I am using the theme blogtxt I would like to take out the date, user name, categories, and comment links. I just want the post title and content, nothing else. I don't want to have anything below the post content.
I took a look at the theme files and found this section in the index.php file
</div>
<div class="entry-meta">
<span class="meta-sep">¶</span>
<span class="entry-date"><?php _e('Posted', 'blogtxt') ?> <abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php unset($previousday); printf(__('%1$s', 'blogtxt'), the_date('d F Y', false)) ?></abbr></span>
<?php blogtxt_author_link(); // Function for author link option ?>
<span class="meta-sep">§</span>
<span class="entry-category"><?php the_category(' § ') ?></span>
<span class="meta-sep">‡</span>
<span class="entry-comments"><?php comments_popup_link(__('Comments (0)', 'blogtxt'), __('Comments (1)', 'blogtxt'), __('Comments (%)', 'blogtxt')) ?></span>
<span class="meta-sep">°</span>
<span class="entry-tags"><?php the_tags(__('Tagged: ', 'blogtxt'), ", ", "") ?></span>
<?php edit_post_link(__('Edit', 'blogtxt'), "\t\t\t\t\t<span class=\"meta-sep\">≡</span>\n\t\t\t\t\t<span class='entry-edit'>", "</span>\n"); ?>
</div>
</div><!-- .post -->
Taking this section out or commenting it, did not help. I know this is the right section. I just don't know how to take it out. Can you please help.
Thanks
-mike
thanks