Add Piratenkleider theme
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
149
wp-content/themes/piratenkleider/category.php
Normal file
149
wp-content/themes/piratenkleider/category.php
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php get_header();
|
||||
global $options;
|
||||
global $wp_query;
|
||||
|
||||
$cat_obj = $wp_query->get_queried_object();
|
||||
$thisCat = $cat_obj->term_id;
|
||||
$thisCatName = get_cat_name($thisCat);
|
||||
$image_url = '';
|
||||
$attribs = array("credits" => $options['img-meta-credits'] );
|
||||
if ($options['category-teaser']) {
|
||||
echo '<div class="section teaser"><div class="row">';
|
||||
get_sidebar( 'teaser' );
|
||||
echo '</div></div>';
|
||||
} else {
|
||||
if (($options['aktiv-platzhalterbilder-indexseiten']==1) && (isset($options['src-default-symbolbild-category']))) {
|
||||
if (isset($options['src-default-symbolbild-category_id']) && ($options['src-default-symbolbild-category_id']>0)) {
|
||||
$image_url_data = wp_get_attachment_image_src( $options['src-default-symbolbild-category_id'], 'full');
|
||||
$image_url = $image_url_data[0];
|
||||
$attribs = piratenkleider_get_image_attributs($options['src-default-symbolbild-category_id']);
|
||||
} else {
|
||||
$image_url = $options['src-default-symbolbild-category'];
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
<div class="section content" id="main-content">
|
||||
<div class="row">
|
||||
<div class="content-primary">
|
||||
<?php
|
||||
|
||||
|
||||
if (isset($image_url) && (strlen($image_url)>4)) {
|
||||
if ($options['indexseitenbild-size']==1) {
|
||||
echo '<div class="content-header-big">';
|
||||
} else {
|
||||
echo '<div class="content-header">';
|
||||
}
|
||||
?>
|
||||
<h1 class="post-title"><span><?php printf( __( 'Category %s', 'piratenkleider' ), '' . single_cat_title( '', false ) . '' ); ?></span></h1>
|
||||
<div class="symbolbild"><img src="<?php echo piratenkleider_make_link_relative($image_url); ?>" alt="" itemprop="image">
|
||||
<?php if (($options['category-teaser']==0) && isset($attribs["credits"]) && (strlen($attribs["credits"])>1)) {
|
||||
echo '<div class="caption">'.$attribs["credits"].'</div>';
|
||||
} ?></div>
|
||||
<?php
|
||||
if ($options['category-teaser']) {
|
||||
echo '<h1 class="skip">'.__("Current entry", 'piratenkleider').' ';
|
||||
printf( __( 'Category %s', 'piratenkleider' ), '' . single_cat_title( '', false ) . '' );
|
||||
echo '</h1>';
|
||||
}
|
||||
echo '</div>';
|
||||
}
|
||||
|
||||
$i = 0;
|
||||
$col = 0;
|
||||
|
||||
$numentries = $options['category-num-article-fullwidth'] + $options['category-num-article-halfwidth'];
|
||||
$col_count = 3;
|
||||
$cols = array();
|
||||
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
|
||||
$thisquery = '&cat='.$thisCat.'&posts_per_page='.$numentries.'&paged=' . $paged;
|
||||
query_posts( $thisquery );
|
||||
|
||||
|
||||
while (have_posts() && $i<$numentries) : the_post();
|
||||
$i++;
|
||||
$output = '';
|
||||
if (( isset($options['category-num-article-fullwidth']))
|
||||
&& ($options['category-num-article-fullwidth']>=$i )) {
|
||||
$output = piratenkleider_post_teaser($options['category-teaser-titleup'],$options['category-teaser-datebox'],$options['category-teaser-dateline'],$options['category-teaser-maxlength'],$options['teaser-thumbnail_fallback'],$options['category-teaser-floating']);
|
||||
} else {
|
||||
$output = piratenkleider_post_teaser($options['category-teaser-titleup-halfwidth'],$options['category-teaser-datebox-halfwidth'],$options['category-teaser-dateline-halfwidth'],$options['category-teaser-maxlength-halfwidth'],$options['teaser-thumbnail_fallback'],$options['category-teaser-floating-halfwidth']);
|
||||
}
|
||||
|
||||
if (isset($output)) {
|
||||
$cols[$col++] = $output;
|
||||
}
|
||||
endwhile;
|
||||
?>
|
||||
|
||||
<div class="skin" itemprop="mainContentOfPage">
|
||||
<meta itemprop="name" content="<?php printf( __( 'Category %s', 'piratenkleider' ), '' . single_cat_title( '', false ) . '' );?>" />
|
||||
<?php
|
||||
if (!(isset($image_url) && (strlen($image_url)>4)) && (!($options['category-teaser']))) {
|
||||
echo '<h1 class="post-title"><span>';
|
||||
printf( __( 'Category %s', 'piratenkleider' ), '' . single_cat_title( '', false ) . '' );
|
||||
echo '</span></h1>';
|
||||
}
|
||||
?>
|
||||
<div class="columns">
|
||||
<?php
|
||||
$z=1;
|
||||
foreach($cols as $key => $col) {
|
||||
if (( isset($options['category-num-article-fullwidth']))
|
||||
&& ($options['category-num-article-fullwidth']>$key )) {
|
||||
echo $col;
|
||||
} else {
|
||||
if (( isset($options['category-num-article-fullwidth']))
|
||||
&& ($options['category-num-article-fullwidth']==$key )
|
||||
&& ($options['category-num-article-fullwidth']>0) ) {
|
||||
echo '<hr>';
|
||||
}
|
||||
echo '<div class="column'.$z.'">' . $col . '</div>';
|
||||
$z++;
|
||||
if ($z>2) {
|
||||
$z=1;
|
||||
echo '<hr style="clear: both;">';
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?php if ( $wp_query->max_num_pages > 1 ) : ?>
|
||||
<div class="archiv-nav"><p>
|
||||
<?php next_posts_link( __( '← Older entries', 'piratenkleider' ) ); ?>
|
||||
<?php previous_posts_link( __( 'Newer entries →', 'piratenkleider' ) ); ?>
|
||||
</p></div>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
<?php if ( ! have_posts() ) : ?>
|
||||
<h2><?php _e("Nothing found", 'piratenkleider'); ?></h2>
|
||||
<p>
|
||||
<?php _e("No matching pages or entries found. Please try to search with another term.", 'piratenkleider'); ?>
|
||||
</p>
|
||||
<?php get_search_form(); ?>
|
||||
<hr>
|
||||
<?php endif;
|
||||
|
||||
|
||||
if ( is_active_sidebar( 'indexpages-widget-area' ) ) {
|
||||
dynamic_sidebar( 'indexpages-widget-area' );
|
||||
} ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="content-aside">
|
||||
<div class="skin">
|
||||
<h1 class="skip"><?php _e( 'More information', 'piratenkleider' ); ?></h1>
|
||||
<?php get_sidebar(); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<?php get_piratenkleider_socialmediaicons(2); ?>
|
||||
</div>
|
||||
|
||||
<?php get_footer();
|
||||
Reference in New Issue
Block a user