mgray1122
Member
Posted 7 months ago #
I am using the Bouquet theme and have just started adding posts to my site. For some reason, a header with the title "Archives" is at the top of all of my posts and I can't seem to get rid of it. I tried CSS and I messed with the archive.php a little bit, but that seems to have made it worse. Now there is a small box in the top left hand corner of the site with the post date on it. I went back to archive.php and added exactly what I had removed, but the date box is still on the site.
Here is a link to one of my three posts: http://eatingwithgrace.com/?cat=9
If anyone could offer some help, I'd greatly appreciate it. I have a little bit of knowledge of working with .css, but haven't done much in the .php files. Thanks!
stonedan
Member
Posted 7 months ago #
Try and find this in your theme;
<h1 class="page-title"><?php
printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
?></h1>
I got this from the second from bottom comment, and it worked for me :)
http://wordpress.org/support/topic/how-to-remove-category-archivesxx-test-on-category-page?replies=5
mgray1122
Member
Posted 7 months ago #
I can't seem to find that bit of code. My theme does not have a category.php page. I assume the answer is in either the single.php or the archives.php, but I don't see anything about archives in the single.php file and nothing about page titles in the archive.php file.