forked from kre8tiv/Joseph-knows-best
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-story.php
executable file
·44 lines (26 loc) · 1.05 KB
/
page-story.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
<?php
/*
Template Name: Story
*/
?>
<?php get_header(); ?>
<?php if ( has_post_thumbnail() ):
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );
$url = $thumb['0']; ?>
<div class="fullpage parallax" style="background-image:url(<?php echo $url ?>);" data-parallax="scroll" data-image-src="<?php echo $url ?>">
<div class="story-intro">
<div class="inner">
<h1><?php the_title(); ?></h1>
<p><?php the_excerpt(); ?></p>
</div>
</div>
</div>
<?php $vz = get_post_meta( $post->ID, 'kr8mb_page_story_vz', true );
if (! empty ($vz )){ ?><nav class="inhaltvz"><h6 class="hidden">Inhaltsverzeichnis dieses Artikels</h6><ul><?php echo $vz; ?></ul></nav><?php } ?>
<?php endif; ?>
<?php while (have_posts()): the_post(); ?>
<article id="inhalt"><div class="inner">
<?php the_content(); ?>
</div></article>
<?php endwhile; ?>
<?php get_footer(); ?>