/
home
/
rekodeb
/
webrodez
/
wp-content
/
themes
/
calmer
/
template-parts
/
blog
/
excerpt
/
Upload File
HOME
<?php /** * Show the appropriate content for the Audio post format. * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package WordPress * @subpackage asset * @since asset 1.0 */ $content = get_the_content(); if ( has_block( 'core/audio', $content ) ) { calmor_print_first_instance_of_block( 'core/audio', $content ); } elseif ( has_block( 'core/embed', $content ) ) { calmor_print_first_instance_of_block( 'core/embed', $content ); } else { calmor_print_first_instance_of_block( 'core-embed/*', $content ); } // Add the excerpt. the_excerpt();