-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate-home-1.php
232 lines (156 loc) · 8.38 KB
/
template-home-1.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/*template name: Home - Recent Work */
get_header(); ?>
<?php $options = get_option('salient'); ?>
<div id="featured" data-caption-animation="<?php echo (!empty($options['slider-caption-animation']) && $options['slider-caption-animation'] == 1) ? '1' : '0'; ?>" data-bg-color="<?php if(!empty($options['slider-bg-color'])) echo $options['slider-bg-color']; ?>" data-slider-height="<?php if(!empty($options['slider-height'])) echo $options['slider-height']; ?>" data-animation-speed="<?php if(!empty($options['slider-animation-speed'])) echo $options['slider-animation-speed']; ?>" data-advance-speed="<?php if(!empty($options['slider-advance-speed'])) echo $options['slider-advance-speed']; ?>" data-autoplay="<?php echo $options['slider-autoplay'];?>">
<?php
$slides = new WP_Query( array( 'post_type' => 'home_slider', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'menu_order' ) );
if( $slides->have_posts() ) : ?>
<?php while( $slides->have_posts() ) : $slides->the_post();
$alignment = get_post_meta($post->ID, '_nectar_slide_alignment', true);
$video_embed = get_post_meta($post->ID, '_nectar_video_embed', true);
$video_m4v = get_post_meta($post->ID, '_nectar_video_m4v', true);
$video_ogv = get_post_meta($post->ID, '_nectar_video_ogv', true);
$video_poster = get_post_meta($post->ID, '_nectar_video_poster', true);
?>
<div class="slide orbit-slide <?php if( !empty($video_embed) || !empty($video_m4v) || !empty($video_ogv)) { echo 'has-video'; } else { echo $alignment; } ?>">
<?php $image = get_post_meta($post->ID, '_nectar_slider_image', true); ?>
<article data-background-cover="<?php echo (!empty($options['slider-background-cover']) && $options['slider-background-cover'] == 1) ? '1' : '0'; ?>" style="background-image: url('<?php echo $image; ?>')">
<div class="container">
<div class="col span_12">
<div class="post-title">
<?php
$wp_version = floatval(get_bloginfo('version'));
//video embed
if( !empty( $video_embed ) ) {
echo '<div class="video">' . do_shortcode($video_embed) . '</div>';
}
//self hosted video pre 3-6
else if( !empty($video_m4v) && $wp_version < "3.6" || !empty($video_ogv) && $wp_version < "3.6") {
echo '<div class="video">';
nectar_video($post->ID);
echo '</div>';
}
//self hosted video post 3-6
else if($wp_version >= "3.6"){
if(!empty($video_m4v) || !empty($video_ogv)) {
$video_output = '[video ';
if(!empty($video_m4v)) { $video_output .= 'mp4="'. $video_m4v .'" '; }
if(!empty($video_ogv)) { $video_output .= 'ogv="'. $video_ogv .'"'; }
$video_output .= ' poster="'.$video_poster.'"]';
echo '<div class="video">' . do_shortcode($video_output) . '</div>';
}
}
?>
<?php
//mobile more info button for video
if( !empty($video_embed) || !empty($video_m4v)) { echo '<div><a href="#" class="more-info"><span class="mi">'.__("More Info",NECTAR_THEME_NAME).'</span><span class="btv">'.__("Back to Video",NECTAR_THEME_NAME).'</span></a></div>'; } ?>
<?php $caption = get_post_meta($post->ID, '_nectar_slider_caption', true); ?>
<h2 data-has-caption="<?php echo (!empty($caption)) ? '1' : '0'; ?>"><span>
<?php echo $caption; ?>
</span></h2>
<?php
$button = get_post_meta($post->ID, '_nectar_slider_button', true);
$button_url = get_post_meta($post->ID, '_nectar_slider_button_url', true);
if(!empty($button)) { ?>
<a href="<?php echo $button_url; ?>" class="uppercase"><?php echo $button; ?></a>
<?php } ?>
</div><!--/post-title-->
</div>
</div>
</article>
</div>
<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
</div>
<div class="home-wrap">
<div class="container main-content">
<div class="row">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div><!--/row-->
<?php
$portfolio_link = get_portfolio_page_link(get_the_ID());
if(!empty($options['main-portfolio-link'])) $portfolio_link = $options['main-portfolio-link'];
$portfolio = array(
'posts_per_page' => '6',
'post_type' => 'portfolio'
);
query_posts($portfolio); ?>
<?php if(have_posts()) { ?>
<div class="carousel-heading">
<h2 class="uppercase"><?php echo (!empty($options['carousel-title'])) ? $options['carousel-title'] :'Recent Work'; ?><a href="<?php echo $portfolio_link; ?>" class="button"> / <?php echo (!empty($options['carousel-link'])) ? $options['carousel-link'] :'View all work'; ?></a></h2>
<a class="carousel-prev" href="#"><i class="icon-angle-left"></i></a>
<a class="carousel-next" href="#"><i class="icon-angle-right"></i></a>
</div>
<div class="carousel-wrap recent-work-carousel">
<ul class="row portfolio-items text-align-center carousel" data-scroll-speed="800" data-easing="easeInOutQuart">
<?php } ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<li class="col span_4">
<div class="work-item">
<?php
//custom thumbnail
$custom_thumbnail = get_post_meta($post->ID, '_nectar_portfolio_custom_thumbnail', true);
if( !empty($custom_thumbnail) ){
echo '<img class="custom-thumbnail" src="'.$custom_thumbnail.'" alt="'. get_the_title() .'" />';
}
else {
if ( has_post_thumbnail() ) {
echo get_the_post_thumbnail($post->ID, 'portfolio-thumb', array('title' => ''));
}
//no image added
else {
echo '<img src="'.get_template_directory_uri().'/img/no-portfolio-item-small.jpg" alt="no image added yet." />';
}
} ?>
<div class="work-info-bg"></div>
<div class="work-info">
<div class="vert-center">
<?php
$featured_image = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full' );
$video_embed = get_post_meta($post->ID, '_nectar_video_embed', true);
$video_m4v = get_post_meta($post->ID, '_nectar_video_m4v', true);
$wp_version = floatval(get_bloginfo('version'));
//video
if( !empty($video_embed) || !empty($video_m4v) ) {
if( !empty( $video_embed) && $wp_version < "3.6" ) {
echo '<a href="#video-popup-'.$post->ID.'" class="pp">'.__("Watch Video", NECTAR_THEME_NAME).' </a> ';
echo '<div id="video-popup-'.$post->ID.'">';
echo '<div class="video-wrap">' . stripslashes(htmlspecialchars_decode($video_embed)) . '</div>';
echo '</div>';
}
else {
echo '<a href="'.get_template_directory_uri(). '/includes/portfolio-functions/video.php?post-id=' .$post->ID.'&iframe=true&width=854" class="pp" >'.__("Watch Video", NECTAR_THEME_NAME).'</a> ';
}
}
//image
else {
echo '<a href="'. $featured_image[0].'" class="pp">'.__("View Larger", NECTAR_THEME_NAME).'</a> ';
}
echo '<a href="' . get_permalink() . '">'.__("More Details", NECTAR_THEME_NAME).'</a>'; ?>
</div><!--/vert-center-->
</div>
</div><!--work-item-->
<div class="work-meta">
<h4 class="title"><?php the_title(); ?></h4>
<?php $options = get_option('salient');
if(!empty($options['portfolio_date']) && $options['portfolio_date'] == 1) the_time('F d, Y');
?>
</div>
<div class="nectar-love-wrap">
<?php if( function_exists('nectar_love') ) nectar_love(); ?>
</div><!--/nectar-love-wrap-->
<div class="clear"></div>
</li><!--/span_4-->
<?php endwhile; endif; ?>
<?php if(have_posts()) { ?>
</ul><!--/carousel-->
</div><!--/carousel-wrap-->
<?php } ?>
</div><!--/container-->
</div><!--/home-wrap-->
<?php get_footer(); ?>