Why does my category page display “posted on…” when all I want it to do is display categories?
Open the archive.php file of the Blank theme and delete this code from the top. <?php /* If this is a category archive */ if (is_category()) { ?> <h2>Archive for the ‘<?php single_cat_title(); ?>’ Category</h2> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h2>Posts Tagged ‘<?php single_tag_title(); ?>’</h2> … Read more