File: /var/www/html/site/newsite/wp-content/themes/ooze/template-parts/archive/archive-video.php
<?php
/**
* Show the appropriate content for the Video post format.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Ooze
* @since Ooze 1.0.0
*/
$content = get_the_content();
if ( has_block( 'core/video', $content ) ) {
ooze_print_first_instance_of_block( 'core/video', $content );
} elseif ( has_block( 'core/embed', $content ) ) {
ooze_print_first_instance_of_block( 'core/embed', $content );
} else {
ooze_print_first_instance_of_block( 'core-embed/*', $content );
}
// Add the excerpt.
if ( absint(ooze_get_option( 'excerpt_length' )) != '0'){
the_excerpt();
}