Heray-Was-Here
Server : Apache/2.4.66 (Debian)
System : Linux 8783c923f53b 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec 5 13:09:44 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.30
Disable Function : NONE
Directory :  /var/www/html/wp-content/themes/the-blocks/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/wp-content/themes/the-blocks/content.php
<?php
/**
 * The template for displaying content
 */
?>
<article <?php post_class('post-item row'); ?>>          

    <div class="news-thumb col-md-3">
        <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
            <?php the_post_thumbnail(); ?>
        </a>
    </div>

    <div class="news-text-wrap col-md-<?php echo (has_post_thumbnail() ? '9' : '12') ?>">   
        <?php the_title('<h2 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h2>'); ?>
        <span class="posted-date">
            <?php echo esc_html(get_the_date()); ?>
        </span>

        <div class="post-content">
            <?php
            if (is_singular()) {
                the_content();
                wp_link_pages();
                the_tags();
                comments_template();
            } else {
                the_excerpt();
            }
            ?>
        </div><!-- .post-excerpt -->
    </div><!-- .news-text-wrap -->

</article>

Hry