I've removed the date from the archive.php, but I can't seem to find the single post (usually single.php). Anybody know how to remove this? Thanks
Would have to check but you can view your theme files from the admin panel and it may speed up finding it. I also saw this the other day in case you may need to have a date somewhere. http://www.dailyblogtips.com/date-exclusion-wordpress-plugin/ hope that helps, Nigel
Yeah I already tried it from the dashboard, I went through the files one by one and only found it in archive.php. And it seems that the pluging I've tried removes it from the homepage, but not the individual posts. I was hoping to just edit the template as I already have a bunch of plugins running. Thanks
Do you have a page_blog ? My copy of lifestyle is old so I may be looking at something a bit different. Nigel
Yes, and I just tried to remove the date, but it's still showing up in the individual posts. <?php /* Template Name: Blog Page */ ?> <?php get_header(); ?> <div id="content"> <div id="contentleft"> <div class="postarea"> <?php include(TEMPLATEPATH."/breadcrumb.php");?> <!--The blog page template is currently set to show 5 posts. Change showposts=5 to whatever number of posts you want to display.--> <!--Replace cat=1 with the Category ID you want to display in this section. See the README file to learn how to locate the Category ID--> <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=1&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <div class="dateright"> <p><span class="icomment"><a href="<?php the_permalink(); ?>#respond"><?php comments_number('Leave a Comment', '1 Comment', '% Comments'); ?></a></span></p> </div> </div> <?php the_content(__('[Read more]'));?><div style="clear:both;"></div> <div class="postmeta2"> Filed Under: <?php the_category(', ') ?><br />Tagged: <?php the_tags('') ?> </div> <?php endwhile; ?> <p><?php posts_nav_link(); ?></p> </div> </div> <?php include(TEMPLATEPATH."/sidebar.php");?> </div> <!-- The main column ends --> <?php get_footer(); ?> Thanks