mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-29 23:09:44 +01:00
1ce5dc7444
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle). WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9. This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices. Follow-up to [52039], [52040], [52326], [55703], [55710], [55987]. Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov. Fixes #58206. Built from https://develop.svn.wordpress.org/trunk@55988 git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
107 lines
2.6 KiB
PHP
107 lines
2.6 KiB
PHP
<?php
|
|
/**
|
|
* Template part for displaying video posts
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Seventeen
|
|
* @since Twenty Seventeen 1.0
|
|
* @version 1.2
|
|
*/
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
<?php
|
|
if ( is_sticky() && is_home() ) {
|
|
echo twentyseventeen_get_svg( array( 'icon' => 'thumb-tack' ) );
|
|
}
|
|
?>
|
|
<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();
|
|
}
|
|
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>' );
|
|
}
|
|
?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<?php
|
|
$content = apply_filters( 'the_content', get_the_content() );
|
|
$video = false;
|
|
|
|
// Only get video from the content if a playlist isn't present.
|
|
if ( ! str_contains( $content, 'wp-playlist-script' ) ) {
|
|
$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>';
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( is_single() || empty( $video ) ) {
|
|
|
|
the_content(
|
|
sprintf(
|
|
/* translators: %s: Post title. Only visible to screen readers. */
|
|
__( '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>',
|
|
)
|
|
);
|
|
}
|
|
?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
<?php
|
|
if ( is_single() ) {
|
|
twentyseventeen_entry_footer();
|
|
}
|
|
?>
|
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|