| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Template part for displaying video posts | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  |  * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @package WordPress | 
					
						
							|  |  |  |  * @subpackage Twenty_Seventeen | 
					
						
							|  |  |  |  * @since 1.0 | 
					
						
							|  |  |  |  * @version 1.2 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
 | 
					
						
							|  |  |  | 	<?php | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 	if ( is_sticky() && is_home() ) { | 
					
						
							|  |  |  | 		echo twentyseventeen_get_svg( array( 'icon' => 'thumb-tack' ) ); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 	?>
 | 
					
						
							|  |  |  | 	<header class="entry-header"> | 
					
						
							|  |  |  | 		<?php | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 		if ( 'post' === get_post_type() ) { | 
					
						
							|  |  |  | 			echo '<div class="entry-meta">'; | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 			if ( is_single() ) { | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 				twentyseventeen_posted_on(); | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 				echo twentyseventeen_time_link(); | 
					
						
							|  |  |  | 				twentyseventeen_edit_link(); | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 				echo '</div><!-- .entry-meta -->'; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ( is_single() ) { | 
					
						
							|  |  |  | 			the_title( '<h1 class="entry-title">', '</h1>' ); | 
					
						
							|  |  |  | 		} elseif ( is_front_page() && is_home() ) { | 
					
						
							|  |  |  | 			the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' ); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 		?>
 | 
					
						
							|  |  |  | 	</header><!-- .entry-header --> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<?php | 
					
						
							|  |  |  | 		$content = apply_filters( 'the_content', get_the_content() ); | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 		$video   = false; | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Only get video from the content if a playlist isn't present.
 | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 	if ( false === strpos( $content, 'wp-playlist-script' ) ) { | 
					
						
							|  |  |  | 		$video = get_media_embedded_in_content( $content, array( 'video', 'object', 'embed', 'iframe' ) ); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 	?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<?php if ( '' !== get_the_post_thumbnail() && ! is_single() && empty( $video ) ) : ?>
 | 
					
						
							|  |  |  | 		<div class="post-thumbnail"> | 
					
						
							|  |  |  | 			<a href="<?php the_permalink(); ?>"> | 
					
						
							|  |  |  | 				<?php the_post_thumbnail( 'twentyseventeen-featured-image' ); ?>
 | 
					
						
							|  |  |  | 			</a> | 
					
						
							|  |  |  | 		</div><!-- .post-thumbnail --> | 
					
						
							|  |  |  | 	<?php endif; ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<div class="entry-content"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<?php | 
					
						
							|  |  |  | 		if ( ! is_single() ) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// If not a single post, highlight the video file.
 | 
					
						
							|  |  |  | 			if ( ! empty( $video ) ) { | 
					
						
							|  |  |  | 				foreach ( $video as $video_html ) { | 
					
						
							|  |  |  | 					echo '<div class="entry-video">'; | 
					
						
							|  |  |  | 						echo $video_html; | 
					
						
							|  |  |  | 					echo '</div>'; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ( is_single() || empty( $video ) ) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			/* translators: %s: Name of current post */ | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | 			the_content( | 
					
						
							|  |  |  | 				sprintf( | 
					
						
							|  |  |  | 					__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentyseventeen' ), | 
					
						
							|  |  |  | 					get_the_title() | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			wp_link_pages( | 
					
						
							|  |  |  | 				array( | 
					
						
							|  |  |  | 					'before'      => '<div class="page-links">' . __( 'Pages:', 'twentyseventeen' ), | 
					
						
							|  |  |  | 					'after'       => '</div>', | 
					
						
							|  |  |  | 					'link_before' => '<span class="page-number">', | 
					
						
							|  |  |  | 					'link_after'  => '</span>', | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 			); | 
					
						
							| 
									
										
										
										
											2019-03-12 09:27:46 +00:00
										 |  |  | 		}; | 
					
						
							|  |  |  | 		?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	</div><!-- .entry-content --> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<?php | 
					
						
							|  |  |  | 	if ( is_single() ) { | 
					
						
							|  |  |  | 		twentyseventeen_entry_footer(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 08:07:01 +01:00
										 |  |  | </article><!-- #post-<?php the_ID(); ?> -->
 |