<?php /** * The template part for displaying video post * @package Event Management * @subpackage event_management * @since 1.0 */ $archive_year = get_the_time('Y'); $archive_month = get_the_time('m'); $archive_day = get_the_time('d'); ?> <?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' ) ); } ?> <article id="post-<?php the_ID(); ?>" <?php post_class('inner-service'); ?>> <div class="box-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> <h2><a href="<?php echo esc_url( get_permalink() ); ?>" title="<?php echo the_title_attribute(); ?>"><?php the_title(); ?><span class="screen-reader-text"><?php the_title(); ?></span></a></h2> <?php if( get_theme_mod('event_management_metafields_date', true) != '' || get_theme_mod('event_management_metafields_author', true) != '' || get_theme_mod('event_management_metafields_comment', true) != '' || get_theme_mod('event_management_metafields_time', true) != '' && get_theme_mod('event_management_display_post_date', true) != '' || get_theme_mod('event_management_display_post_author', true) != '' || get_theme_mod('event_management_display_post_comment', true) != '' || get_theme_mod('event_management_display_post_time', true) != ''){ ?> <div class="metabox mb-3"> <?php if( get_theme_mod( 'event_management_metafields_date',true) != '' || get_theme_mod( 'event_management_display_post_date',true) != '') { ?> <span class="entry-date me-1"><i class="<?php echo esc_attr(get_theme_mod('event_management_post_date_icon','far fa-calendar-alt')); ?> me-1"></i> <a href="<?php echo esc_url( get_day_link( $archive_year, $archive_month, $archive_day)); ?>"><?php echo esc_html( get_the_date() ); ?><span class="screen-reader-text"><?php echo esc_html( get_the_date() ); ?></span></a><span class="ms-2"><?php echo esc_html( get_theme_mod('event_management_blog_post_meta_seperator','|') ); ?></span></span> <?php }?> <?php if( get_theme_mod( 'event_management_metafields_author',true) != '' || get_theme_mod( 'event_management_display_post_author',true) != '') { ?> <span class="entry-author mx-1"><i class="<?php echo esc_attr(get_theme_mod('event_management_post_author_icon','fas fa-user')); ?> me-1"></i> <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><?php the_author(); ?><span class="screen-reader-text"><?php the_title(); ?></span></a><span class="ms-2"><?php echo esc_html( get_theme_mod('event_management_blog_post_meta_seperator','|') ); ?></span></span> <?php }?> <?php if( get_theme_mod( 'event_management_metafields_comment',true) != '' || get_theme_mod( 'event_management_display_post_comment',true) != '') { ?> <span class="entry-comments mx-1"><i class="<?php echo esc_attr(get_theme_mod('event_management_post_comment_icon','fas fa-comments')); ?> me-1"></i> <?php comments_number( __('0 Comment', 'event-management'), __('0 Comments', 'event-management'), __('% Comments', 'event-management') ); ?><span class="ms-2"><?php echo esc_html( get_theme_mod('event_management_blog_post_meta_seperator','|') ); ?></span></span> <?php }?> <?php if( get_theme_mod( 'event_management_metafields_time',true) != '' || get_theme_mod( 'event_management_display_post_time',true) != '') { ?> <span class="entry-time mx-1"><i class="<?php echo esc_attr(get_theme_mod('event_management_post_time_icon','fas fa-clock')); ?> me-1"></i> <?php echo esc_html( get_the_time() ); ?></span> <?php }?> <?php echo esc_html (event_management_edit_link()); ?> </div> <?php }?> <div class="new-text"> <?php $event_management_theme_lay = get_theme_mod( 'event_management_content_settings','Excerpt'); if($event_management_theme_lay == 'Content'){ ?> <?php the_content(); ?> <?php } if($event_management_theme_lay == 'Excerpt'){ ?> <?php if(get_the_excerpt()) { ?> <?php $event_management_excerpt = get_the_excerpt(); echo esc_html( event_management_string_limit_words( $event_management_excerpt, esc_attr(get_theme_mod('event_management_post_excerpt_number','30')))); ?> <?php echo esc_html( get_theme_mod('event_management_post_discription_suffix','[...]') ); ?> <?php }?> <?php }?> </div> <?php if( get_theme_mod('event_management_button_text','View More') != ''){ ?> <div class="postbtn mt-4 text-start"> <a href="<?php the_permalink(); ?>"><?php echo esc_html(get_theme_mod('event_management_button_text','View More'));?><i class="<?php echo esc_attr(get_theme_mod('event_management_button_icon','fas fa-long-arrow-alt-right')); ?>"></i><span class="screen-reader-text"><?php echo esc_html(get_theme_mod('event_management_button_text','View More'));?></span></a> </div> <?php }?> </article>