HEX
Server: Apache
System: Linux webm020.cluster127.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: bohousj (181416)
PHP: 8.4.22
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/bohousj/medal/wp-content/themes/choicy/post-formats/content-quote.php
<?php
/**
 * Template part for displaying posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package choicy
 */

 $author_bio_avatar_size = 40;
 $choicy_enable_social_share = cs_get_option( 'choicy_enable_social_share' );

 $has_thumb = '';
 if(has_post_thumbnail()) {
     $has_thumb = 'has-thumbnail';
 } else {
     $has_thumb = 'has-nOthumbnail';
 }
?>

<article id="post-<?php the_ID(); ?>" <?php post_class( 'tx-blog-box news-block_three format-quote'); ?>>
    <div class="news-block_three-inner <?php echo esc_attr($has_thumb); ?>">
        <div class="news-block_three-content">
            <div class="post-excerpt news-block_two-text">
            <?php the_content();?>
            </div>
        </div>
    </div>
</article>