Importing Twenty Seventeen, our new default theme for 2017, set for 4.7.
With a focus on business sites, it will let you get down to business in style. Initial development occurred on GitHub. See: https://github.com/WordPress/twentyseventeen
Props melchoyce, laurelfulford, davidakennedy, grapplerulrich, manishsongirkar36, joefusco, smyoon315, b-07, rabmalin, mrahmadawais, hardeepasrani, implenton, acmethemes, claudiosanches, valeriutihai, pressionate, sgr33n, doughamlin, zodiac1978, tsl143, nikschavan, joshcummingsdesign, enodekciw, jordesign, patilvikasj, ryelle, mahesh901122, williampatton, juanfra, imnok, littlebigthing, mor10, samikeijonen, celloexpressions, akshayvinchurkar, davidmosterd, hiddenpearls, netweb, pratikchaskar, taggon, nukaga, ranh, yoavf, karmatosed, sandesh055, adammacias, noplanman, yogasukma, binarymoon, swapnilld, swissspidy, joyously, allancole, rianrietveld, sixhours, alex27, themeshaper, mapk, leobaiano.
See #38372.
Built from https://develop.svn.wordpress.org/trunk@38833
git-svn-id: http://core.svn.wordpress.org/trunk@38776 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-20 06:12:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template part for displaying video posts
|
|
|
|
*
|
|
|
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Seventeen
|
|
|
|
* @since 1.0
|
|
|
|
* @version 1.0
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<?php
|
|
|
|
if ( is_sticky() && is_home() ) :
|
2016-11-01 18:26:32 +01:00
|
|
|
echo twentyseventeen_get_svg( array( 'icon' => 'thumb-tack' ) );
|
Importing Twenty Seventeen, our new default theme for 2017, set for 4.7.
With a focus on business sites, it will let you get down to business in style. Initial development occurred on GitHub. See: https://github.com/WordPress/twentyseventeen
Props melchoyce, laurelfulford, davidakennedy, grapplerulrich, manishsongirkar36, joefusco, smyoon315, b-07, rabmalin, mrahmadawais, hardeepasrani, implenton, acmethemes, claudiosanches, valeriutihai, pressionate, sgr33n, doughamlin, zodiac1978, tsl143, nikschavan, joshcummingsdesign, enodekciw, jordesign, patilvikasj, ryelle, mahesh901122, williampatton, juanfra, imnok, littlebigthing, mor10, samikeijonen, celloexpressions, akshayvinchurkar, davidmosterd, hiddenpearls, netweb, pratikchaskar, taggon, nukaga, ranh, yoavf, karmatosed, sandesh055, adammacias, noplanman, yogasukma, binarymoon, swapnilld, swissspidy, joyously, allancole, rianrietveld, sixhours, alex27, themeshaper, mapk, leobaiano.
See #38372.
Built from https://develop.svn.wordpress.org/trunk@38833
git-svn-id: http://core.svn.wordpress.org/trunk@38776 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-20 06:12:31 +02:00
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
<header class="entry-header">
|
|
|
|
<?php
|
|
|
|
if ( 'post' === get_post_type() ) :
|
|
|
|
echo '<div class="entry-meta">';
|
|
|
|
if ( is_single() ) :
|
|
|
|
twentyseventeen_posted_on();
|
|
|
|
else :
|
|
|
|
echo twentyseventeen_time_link();
|
|
|
|
twentyseventeen_edit_link();
|
|
|
|
endif;
|
|
|
|
echo '</div><!-- .entry-meta -->';
|
|
|
|
endif;
|
|
|
|
|
|
|
|
if ( is_single() ) {
|
|
|
|
the_title( '<h1 class="entry-title">', '</h1>' );
|
|
|
|
} else {
|
|
|
|
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</header><!-- .entry-header -->
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$content = apply_filters( 'the_content', get_the_content() );
|
|
|
|
$video = get_media_embedded_in_content( $content, array( 'video', 'object', 'embed', 'iframe' ) );
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?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>';
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
|
|
|
if ( is_single() || empty( $video ) ) :
|
|
|
|
|
|
|
|
/* translators: %s: Name of current post */
|
|
|
|
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>',
|
|
|
|
) );
|
|
|
|
|
|
|
|
endif; ?>
|
|
|
|
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
|
|
|
|
<?php if ( is_single() ) : ?>
|
|
|
|
<?php twentyseventeen_entry_footer(); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
</article><!-- #post-## -->
|