forked from xwolfde/Piratenkleider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
39 lines (37 loc) · 1.61 KB
/
category.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php get_header();
$options = get_option( 'piratenkleider_theme_options' );
$bilderoptions = get_option( 'piratenkleider_theme_defaultbilder' );
if (!isset($bilderoptions['src-default-symbolbild-category']))
$bilderoptions['src-default-symbolbild-category'] = $defaultoptions['src-default-symbolbild-category'];
?>
<div class="section content" id="main-content">
<div class="row">
<div class="content-primary">
<div class="content-header">
<h1><?php printf( __( 'Kategorie %s', 'piratenkleider' ), '' . single_cat_title( '', false ) . '' ); ?></h1>
<?php if ($options['aktiv-platzhalterbilder-indexseiten']) { ?>
<div class="symbolbild">
<img src="<?php echo $bilderoptions['src-default-symbolbild-category']?>" alt="" >
</div>
<?php } ?>
</div>
<div class="skin">
<?php
get_template_part( 'loop', 'category' );?>
<div class="widget">
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</div>
</div>
</div>
<div class="content-aside">
<div class="skin">
<h1 class="skip"><?php _e( 'Weitere Informationen', 'piratenkleider' ); ?></h1>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_piratenkleider_socialmediaicons($options['alle-socialmediabuttons']); ?>
</div>
<?php get_footer(); ?>