File: /home/l2pbkn5l6xav/www/wp-content/themes/safha-one-page/template-parts/post/content-video.php
<?php
/**
* Template part for displaying posts
*/
?>
<?php
$content = apply_filters( 'the_content', get_the_content() );
$video = false;
// Only get video from the content if a playlist isn't present.
if ( false === strpos( $content, 'wp-playlist-script' ) ) {
$video = get_media_embedded_in_content( $content, array( 'video', 'object', 'embed', 'iframe' ) );
}
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="blogger">
<?php { ?>
<div class="post-image">
<?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>';
}
};
};
?>
</div>
<?php } ?>
<h3><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php the_title_attribute(); ?>"><?php the_title();?></a></h3>
<div class="post-info">
<i class="fa fa-calendar" aria-hidden="true"></i><span class="entry-date"> <a href="<?php the_permalink(); ?>"><?php echo esc_html(get_the_date()); ?></a></span>
<i class="fa fa-user" aria-hidden="true"></i><span class="entry-author"> <a href="<?php the_permalink(); ?>"><?php the_author(); ?></a></span>
<i class="fas fa-comments"></i><span class="entry-comments"><a href="<?php the_permalink(); ?>"><?php comments_number( __('0 Comments','safha-one-page'), __('0 Comments','safha-one-page'), __('% Comments','safha-one-page') ); ?></a></span>
</div>
<p><?php the_excerpt();?></p>
<div class="post-link">
<a href="<?php echo esc_url( get_permalink() ); ?>"><?php esc_attr_e( 'READ MORE','safha-one-page' ); ?></a>
</div>
</div>
</div>