File: /var/www/html/site/newsite/wp-content/themes/ooze/template-parts/archive/archive-link.php
<?php
/**
* Show the appropriate content for the Link post format.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Ooze
* @since Ooze 1.0.0
*/
// Print the 1st instance of a paragraph block. If none is found, print the content
if ( has_block( 'core/paragraph', get_the_content() ) ) {
ooze_print_first_instance_of_block( 'core/paragraph', get_the_content() );
} else {
the_content();
}