HEX
Server: Apache
System: Linux webm005.cluster121.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: adventp (418412)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/adventp/www/wp-content/themes/brooklyn/partials/blog/content-audio.php
<?php

if( is_single() && ut_collect_option('ut_post_meta_box', 'on', 'ut_') == 'off' ) {

    $meta_grid = 'ut-new-hide';
    $content_grid = !ut_blog_has_sidebar() ? 'grid-90 prefix-5 suffix-5 tablet-grid-100 mobile-grid-100' : 'grid-100 tablet-grid-100 mobile-grid-100';

} else {

    $meta_grid    = !ut_blog_has_sidebar() ? 'grid-15 tablet-grid-20 hide-on-mobile'  : 'grid-25 tablet-grid-25 hide-on-mobile';
    $content_grid = !ut_blog_has_sidebar() ? 'grid-85 tablet-grid-80 mobile-grid-100' : 'grid-75 tablet-grid-75 mobile-grid-100';

} ?>

<!-- post -->
<article id="post-<?php the_ID(); ?>" <?php post_class( 'ut-blog-classic-article clearfix' ); ?> >

    <!-- entry-meta -->
    <div class="<?php echo esc_attr($meta_grid); ?>">
         
        <div class="entry-meta">
        
            <?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
            <a href="<?php echo get_month_link( get_the_time('Y'), get_the_time('m') ); ?>">
                <div class="date-format">
                    <span class="day"><?php the_time('d'); ?></span>
                    <span class="month"><?php the_time('M'); ?> <?php the_time('Y'); ?></span>
                </div>
            </a>
            
            <span class="ut-sticky"><?php echo unite_get_blog_icon( 'sticky' ); ?></span>
            <span class="author-links"><?php echo unite_get_blog_icon( 'author', $post->post_author ); ?><?php the_author_posts_link(); ?></span>
            <?php
                /* translators: used between list items, there is a space after the comma */
                $categories_list = get_the_category_list( esc_html__( ', ', 'unitedthemes' ) );
                if ( $categories_list && unitedthemes_categorized_blog() ) :
            ?>
            <span class="cat-links"><?php echo unite_get_blog_icon( 'category' ); ?><?php printf( esc_html__( '%1$s', 'unitedthemes' ), $categories_list ); ?></span>
            <?php endif; // End if categories ?>      
            <?php endif; // End if 'post' == get_post_type() ?>
            <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
            <span class="comments-link"><?php echo unite_get_blog_icon( 'comments' ); ?><?php comments_popup_link(esc_html__('No Comments', 'unitedthemes'), esc_html__('1 Comment', 'unitedthemes'), esc_html__('% Comments', 'unitedthemes')); ?></span>
            <?php endif; ?>
            <?php if ( !is_single() ) : ?>
            <span class="permalink"><?php echo unite_get_blog_icon( 'permalink' ); ?><a title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>" href="<?php the_permalink(); ?>"><?php esc_html_e('Permalink', 'unitedthemes') ?></a></span>
            <?php endif; ?>
            
        </div>       
    
    </div><!-- close entry-meta -->

    <div class="<?php echo esc_attr($content_grid); ?>">
    
        <?php if ( is_single() ) : ?>

            <?php if( ut_collect_option('ut_post_title', 'on', 'ut_') == 'on' ) : ?>

                <!-- entry-header -->    
                <header class="entry-header">
                    
                    <?php if( get_post_meta( get_the_ID(), 'ut_post_custom_title', true ) ) : ?>
                        
                        <h1 data-responsive-font="single_post_title" class="entry-title single-post-entry-title element-with-custom-line-height"><?php echo get_post_meta( get_the_ID(), 'ut_post_custom_title', true ); ?></h1>
                    
                    <?php else : ?>
                    
                        <h1 data-responsive-font="single_post_title" class="entry-title single-post-entry-title element-with-custom-line-height"><?php the_title(); ?></h1>
                    
                    <?php endif; ?>

                    <?php if( get_post_meta( get_the_ID(), 'post_title_secondary', true ) ) : ?>

                        <h2 data-responsive-font="single_post_sub_title" class="single-post-entry-sub-title"><?php echo get_post_meta( get_the_ID(), 'post_title_secondary', true ); ?></h2>

                    <?php endif; ?>
                    
                </header>    

            <?php endif; ?>

        <?php endif; ?>   
        
        <?php if ( ( has_post_thumbnail() || get_post_format_audio_content() ) && !post_password_required() && !is_single() ) : ?>
        
            <!-- ut-post-thumbnail -->
            <div class="ut-post-thumbnail">

                <div class="entry-thumbnail">

                    <?php if ( has_post_thumbnail() ) : ?>
                    
                        <a title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>" href="<?php the_permalink(); ?>">

                            <div class="ut-meta-post-icon"><i class="Bklyn-Core-Headset-1" aria-hidden="true"></i></div>

                        </a>

                        <?php

                        /* featured image */
                        $fullsize   = wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) ); 
                        $fullsizeID = ut_get_attachment_id_from_url( $fullsize );
                        $caption = get_post( $fullsizeID )->post_excerpt;

                        ?>

                        <a title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>" href="<?php the_permalink(); ?>">                
                            
                            <figure class="ut-post-thumbnail-caption-wrap">

		                        <?php echo UT_Adaptive_Image::create(); ?>

		                        <?php if ( $caption ) : ?>

                                    <figcaption class="ut-post-thumbnail-caption"><?php echo esc_html($caption); ?></figcaption>

		                        <?php endif; ?>

                            </figure>
                            
                        </a>  

                    <?php else : ?>

                        <?php post_format_audio_content(); ?>

                    <?php endif; ?>  
                                        
                </div>

            </div>
        
        <?php endif; ?>
        
        <?php if( !is_single() ) : ?>  
          
            <!-- entry-header -->    
            <header class="entry-header">

                <h2 class="entry-title element-with-custom-line-height" data-responsive-font="classic_blog_title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'unitedthemes'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>

                <div class="entry-meta hide-on-desktop hide-on-tablet">

                    <?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
                    <span class="ut-sticky"><?php echo unite_get_blog_icon( 'sticky' ); ?></span>
                    <span class="author-links"><?php echo unite_get_blog_icon( 'author', $post->post_author ); ?><?php the_author_posts_link(); ?></span>
                    <span class="date-format"><i class="BklynIcons-Clock-1"></i><span><?php the_time( get_option('date_format') ); ?></span></span>
                    <?php endif; // End if 'post' == get_post_type() ?>
                    <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
                    <span class="comments-link"><?php echo unite_get_blog_icon( 'comments' ); ?><?php comments_popup_link(esc_html__('No Comments', 'unitedthemes'), esc_html__('1 Comment', 'unitedthemes'), esc_html__('% Comments', 'unitedthemes')); ?></span>
                    <?php endif; ?>

                </div>

            </header>          
      
        <?php endif; ?> 
        
        <!-- entry-content -->
        <div class="entry-content clearfix">
            
            <?php if( is_single() && get_post_format_audio_content() ) : ?>
                
                <div class="ut-post-media">

                    <?php post_format_audio_content(); ?>

                </div>
                    
            <?php endif; ?>
            
            <?php if( !is_single() && has_excerpt() ) : ?>
            
                <?php echo apply_filters( 'the_content', $post->post_excerpt ); ?>
                <p><a class="more-link" href="<?php echo get_the_permalink(); ?>"><span class="more-link"><?php esc_html_e( 'Read more', 'unitedthemes' ); ?><?php echo ut_custom_read_more_icon(); ?></span></a></p>
                
            <?php else : ?>
            
                <?php the_content( '<span class="more-link">' . esc_html__( 'Read more', 'unitedthemes' ) . ut_custom_read_more_icon() . '</span>' ); ?>            
            
            <?php endif; ?>            
            
            <?php ut_link_pages( array( 'before' => '<div class="page-links">', 'after' => '</div>' ) ); ?>
            
            <?php if ( is_single() ) : ?>
            <?php
            /* translators: used between list items, there is a space after the comma */
            $tags_list = get_the_tag_list( '', esc_html__( ', ', 'unitedthemes' ) );
            if ( $tags_list ) :
            ?>
            <span class="tags-links">
                <i class="fa fa-hashtag"></i><?php printf( esc_html__( '%1$s', 'unitedthemes' ), $tags_list ); ?>
            </span>
            <?php endif; // End if $tags_list ?>
            
            <?php edit_post_link( esc_html__( 'Edit Article', 'unitedthemes' ), '<span class="edit-link">', '</span>' ); ?> 
            
            <?php endif; // is_single() ?>
            
        </div><!-- close entry-content -->
             
    </div>     

</article><!-- close post -->

<?php get_template_part( 'author-bio' ); ?>