-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
36 lines (32 loc) · 1.02 KB
/
index.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
<?php get_header(); ?>
<!-- Content //-->
<div id="content">
<div id="photo-rotator">
<?php
$slide_id=1;
$featuredPosts = new WP_Query();
$featuredPosts->query("showposts=3&category_name=Leitartikel");
while ($featuredPosts->have_posts()) : $featuredPosts->the_post();
?>
<div id="slide-<?php echo $slide_id; $slide_id++;?>">
<a href="<?php the_permalink() ?>" class="post-image">
<?php the_post_thumbnail( 'rotator-post-image' ); ?>
<span class="title"><h2><?php the_title(); ?></h2></span>
<span class="text"><p><?php the_excerpt(); ?><br /><span class="more">Weiter zum Artikel</span></p></span>
</a>
</div>
<?php endwhile; ?><!--/close loop-->
<ul id="slide-nav">
<?php $nav_id=1; ?>
<?php while ($featuredPosts->have_posts()) : $featuredPosts->the_post(); ?>
<li>
<a href="#slide-<?php echo $nav_id; ?>">
<?$nav_id++;?>
</a>
</li>
<?php endwhile; ?><!--/close loop-->
</ul>
</div>
</div><!-- End of content //-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>