-
Notifications
You must be signed in to change notification settings - Fork 14
/
page-home-kacheln-sticky.php
106 lines (77 loc) · 2.93 KB
/
page-home-kacheln-sticky.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
/*
Template Name: Startseite mit drei Kacheln (Sticky Posts)
*/
?>
<?php get_header(); ?>
<?php if (!is_paged()) {
$stickyshown = array();
$stickyposts = get_posts(array(
'posts_per_page' => 3,
'post__in' => get_option( 'sticky_posts' ),
));
if(count($stickyposts) < 3) {
$nonstickyposts = get_posts(array(
'posts_per_page' => 3 - count($stickyposts),
'post__not_in' => get_option( 'sticky_posts' ),
));
$stickyposts = array_merge($stickyposts, $nonstickyposts);
}
if($stickyposts) : ?>
<div id="teaser" class="clearfix kacheln kacheln-neu">
<?php global $post;
$post = $stickyposts[0];
$stickyshown[] = $post->ID;
setup_postdata( $post ); ?>
<div class="eightcol first clearfix">
<?php kr8_template_part( 'content-kachel', get_post_format() ); ?>
</div>
<?php unset($stickyposts[0]);
wp_reset_postdata(); ?>
<?php if($stickyposts) : ?>
<div class="fourcol last clearfix">
<?php foreach($stickyposts as $stickypost) :
global $post;
$post = $stickypost;
$stickyshown[] = $post->ID;
setup_postdata( $post ); ?>
<?php kr8_template_part( 'content-kachel', get_post_format() ); ?>
<?php endforeach;
wp_reset_postdata(); ?>
</div>
<?php endif; ?>
</div>
<?php endif;
} ?>
<div id="main" class="ninecol first clearfix" role="main">
<?php wp_reset_query(); ?>
<?php
if ( get_query_var('paged') ) { $paged = get_query_var('paged'); }
elseif ( get_query_var('page') ) { $paged = get_query_var('page'); }
else { $paged = 1; }
$postsperpage = get_option('posts_per_page');
?>
<?php $args3 = array(
'posts_per_page' => $postsperpage,
'paged' => $paged,
'post__not_in' => array_slice($stickyshown, -3, 3),
'ignore_sticky_posts' => 0
);
query_posts($args3);
?>
<?php while ( have_posts() ) : the_post(); ?>
<?php kr8_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php if (function_exists('kr8_page_navi')) { ?>
<?php kr8_page_navi(); ?>
<?php } else { ?>
<nav class="wp-prev-next">
<ul class="clearfix">
<li class="prev-link"><?php next_posts_link(__('« Ältere Beiträge', "kr8theme")) ?></li>
<li class="next-link"><?php previous_posts_link(__('Neuere Beiträge »', "kr8theme")) ?></li>
</ul>
</nav>
<?php } ?>
</div> <!-- end #main -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>