HEX
Server: Apache/2.4.6 (CentOS) mpm-itk/2.4.7-04 mod_fcgid/2.3.9 PHP/5.4.16
System: Linux dvm.vladweb.ru 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: region-gk.ru (1016)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: /home/region-gk.ru/data/www/region-gk.ru/wp-content/themes/region/partials/dps-newslist.php
<?php $categories = get_the_category(); ?>
<div class="card border-0 h-100 w-100 overflow-hidden mb-4 <?php foreach( $categories as $category ) { echo 'category-'.$category->slug.' '; } ?>">
  <div class="card-body">
	<div class="row">
	<?php if ( has_post_thumbnail() ) : ?>
	<div class="col-4">
         <img src="<?php echo get_the_post_thumbnail_url( get_the_ID(), 'full' ); ?>" class="img-fluid"  alt="">
	</div>
	<div class="col-8">
	<?php else: ?>
	<div class="col-12">
    <?php endif; ?>
	    <h6 class="card-subtitle text-muted font-weight-normal mb-3"><span><i class="far fa-calendar"></i> <?php echo get_the_date(); ?></span></h6>
        <a href="<?php echo get_the_permalink(); ?>"><?php the_title( '<h5 class="card-title">', '</h5>' ); ?></a>
	<?php if ( has_excerpt() ) : ?>
		<?php //the_excerpt(); ?>
    <?php else: ?>
        <?php //the_content(); ?>
	<?php endif; ?>
<?php //if ( has_excerpt() ) : ?>
<a class="btn btn-link pl-0" style="display: none" href="<?php echo get_the_permalink(); ?>">Подробнее <i class="fas fa-chevron-right ml-1" aria-hidden="true" style="font-size: 70%"></i></a>
<?php //endif; ?>
	</div>
	</div>
</div>
</div>