-
Notifications
You must be signed in to change notification settings - Fork 0
/
_content-akce.php
68 lines (57 loc) · 2.49 KB
/
_content-akce.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
<?php
/**
* Výpis jednoho excerptu akce s kalendářem (akce)
*
* @package Persona Studio
* @subpackage Instuktoři
*/
$akce_from_timestamp = get_post_meta( $post->ID, 'akce_from', true );
$akce_to_timestamp = get_post_meta( $post->ID, 'akce_to', true );
$akce_url = get_post_meta( $post->ID, 'akce_url', true );
echo '<div class="row">';
if ( has_post_thumbnail() ) {
$custom = get_post_custom();
$custom = get_post_meta( $custom['_thumbnail_id'][0], '_wp_attached_file', true );
$uploads = wp_upload_dir();
echo '<div class="col-xs-4">';
echo '<div class="post-archive-thumbnail post-thumbnail thumbnail-type-' . get_post_type( $post->ID ) . ' hidden-xs">';
if ( ! empty( $akce_url ) ) {
echo '<a href="' . $akce_url . '" title="' . get_the_title() . '">';
} else {
echo '<a href="' . get_permalink() . '" title="' . get_the_title() . '">';
}
echo '<img src="' . $uploads['baseurl'] . '/' . $custom . '" alt="' . get_the_title() . '"/>';
echo '</a></div>'; // .post-archive-thumbnail apod.
echo '</div>'; // .col-xs-4
} else { // post nemá thumbnail
echo '<div class="col-xs-4">';
echo '<div class="post-archive-thumbnail post-thumbnail thumbnail-type-' . get_post_type( $post->ID ) . ' hidden-xs">';
if ( ! empty( $akce_url ) ) {
echo '<a href="' . $akce_url . '" title="' . get_the_title() . '">';
} else {
echo '<a href="' . get_permalink() . '" title="' . get_the_title() . '">';
}
echo '<img src="' . get_template_directory_uri() . '/images/no-thumbnail.png" alt="' . get_the_title() . '"/>';
echo '</a></div>'; // .post-archive-thumbnail apod.
echo '</div>'; // .col-xs-4
}
echo '<div class="col-xs-8">';
if ( ! empty( $akce_url ) ) {
the_title( '<h3><a href="' . $akce_url . '">', '</a></h3>' );
} else {
the_title( '<h3><a href="' . get_permalink() . '">', '</a></h3>' );
}
if ( ! empty( $akce_from_timestamp ) and empty( $akce_to_timestamp ) ) {
echo date( 'd.m.Y', $akce_from_timestamp );
} elseif ( ! empty( $akce_from_timestamp ) and ! empty( $akce_to_timestamp ) ) {
echo date( 'd.m.', $akce_from_timestamp ) . ' - ' . date( 'd.m.Y', $akce_to_timestamp );
}
the_excerpt();
// echo '<H1>ahoj</H1>';
if ( ! empty( $akce_url ) ) {
echo '<a href="' . $akce_url . '" class="akce-more">Web akce ></a>';
} else {
echo '<a href="' . get_permalink() . '" class="akce-more">Chci vědět víc ></a>';
}
echo '</div>'; // .col-xs-8
echo '</div>'; // .row