forked from xwolfde/Piratenkleider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-person.php
84 lines (70 loc) · 2.78 KB
/
single-person.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
<?php get_header();
global $options;
?>
<div class="section content" id="main-content">
<div class="row">
<div class="content-primary">
<?php if ( have_posts() ) while ( have_posts() ) : the_post();
$custom_fields = get_post_custom();
$image_url = '';
$image_alt = '';
$attribs = array(
"credits" => $options['img-meta-credits'],
);
if (has_post_thumbnail()) {
$thumbid = get_post_thumbnail_id(get_the_ID());
$image_url_data = wp_get_attachment_image_src( $thumbid, 'full');
$image_url = $image_url_data[0];
$attribs = piratenkleider_get_image_attributs($thumbid);
}
if (!(isset($image_url) && (strlen($image_url)>4))) {
if (($options['aktiv-platzhalterbilder-indexseiten']==1) && (isset($options['src-default-symbolbild-person']))) {
if (isset($options['src-default-symbolbild-person_id']) && ($options['src-default-symbolbild-person_id'] >0)) {
$image_url_data = wp_get_attachment_image_src( $options['src-default-symbolbild-person_id'], 'full');
$image_url = $image_url_data[0];
$attribs = piratenkleider_get_image_attributs($options['src-default-symbolbild-person_id']);
} else {
$image_url = $options['src-default-symbolbild-person'];
}
}
}
if (isset($image_url) && (strlen($image_url)>4)) {
if ($options['artikelbild-size']==1) {
echo '<div class="content-header-big">';
} else {
echo '<div class="content-header">';
}
?>
<header>
<h1 class="post-title"><span><?php the_title(); ?></span></h1>
</header>
<div class="symbolbild"><img src="<?php echo piratenkleider_make_link_relative($image_url); ?>" alt="">
<?php if (isset($attribs["credits"]) && (strlen($attribs["credits"])>1)) {
echo '<div class="caption">'.$attribs["credits"].'</div>';
} ?>
</div>
</div>
<?php } ?>
<div class="skin">
<?php if (!(isset($image_url) && (strlen($image_url)>4))) { ?>
<h1 class="post-title"><span><?php the_title(); ?></span></h1>
<?php } ?>
<section class="person">
<?php echo piratenkleider_display_person($post->ID, 'full',0); ?>
<div><?php edit_post_link( __( 'Edit', 'piratenkleider' ), '', '' ); ?></div>
</section>
</div>
<?php endwhile; // end of the loop. ?>
</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(); ?>