forked from seoagentur-hamburg/techbrain.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchiv.php
22 lines (18 loc) · 1 KB
/
archiv.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<header class="page-header">
<div class="page-title">
<?php if( is_category() ) : ?>
<h1 class="entry-title"><?php _e('Kategorie', 'revothemes');?><span class="name"><?php echo single_cat_title();?></span></h1>
<div class="cat-description"><?php echo category_description(); ?></div>
<?php endif; ?>
<?php if ( is_tag() ) :?>
<h1 class="entry-title"><?php _e('Schlagwort', 'revothemes');?><span class="name"><?php echo single_tag_title();?></span></h1>
<?php endif; ?>
<?php if ( is_day() ) : ?>
<h1 class="entry-title"><?php _e('Tag', 'wilson'); ?><span class="name"><?php echo get_the_date(); ?></span></h1>
<?php elseif ( is_month() ) :?>
<h1 class="entry-title"><?php _e('Monat', 'wilson'); ?><span class="name"><?php echo get_the_date('F Y'); ?></span></h1>
<?php elseif ( is_year() ) :?>
<h1 class="entry-title"><?php _e('Jahr', 'wilson'); ?><span class="name"><?php echo get_the_date('Y'); ?></span></h1>
<?php endif; ?>
</div>
</header>