Ciskut
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twelve] How to Remove the double line at the bottomHi Michael,
That worked, thank you for your help!
If it helps, this is I think the code in archive.php creating the auto-generated text:
<?php get_header(); ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<<h1><?php printf(__(‘Archive for the ‘%s’ Category’), single_cat_title(”, false)); ?></h1>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h1″><?php printf(__(‘Posts Tagged ‘%s’’), single_tag_title(”, false) ); ?></h1>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h1><?php printf(_c(‘Archive for %s|Daily archive page’), get_the_time(__(‘F jS, Y’))); ?></h1>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h1><?php printf(_c(‘Archive for %s|Monthly archive page’), get_the_time(__(‘F, Y’))); ?></h1>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h1><?php printf(_c(‘Archive for %s|Yearly archive page’), get_the_time(__(‘Y’))); ?></h1>
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h1><?php _e(‘Author Archive’); ?></h1>
<?php /* If this is a paged archive */ } elseif (isset($_GET[‘paged’]) && !empty($_GET[‘paged’])) { ?>
<h1><?php _e(‘Blog Archives’); ?></h1>
<?php } ?>thanks in advance for the help
I can see it is generated in the archive.php