View file root/template-parts/posts/slider-card.php

File size: 1.99Kb
<?php
/**
 * ****************************************************************************
 *
 *   НЕ РЕДАКТИРУЙТЕ ЭТОТ ФАЙЛ
 *
 *   ВНИМАНИЕ!!!!!!!
 *
 *   НЕ РЕДАКТИРУЙТЕ ЭТОТ ФАЙЛ
 *   ПРИ ОБНОВЛЕНИИ ТЕМЫ - ВЫ ПОТЕРЯЕТЕ ВСЕ ВАШИ ИЗМЕНЕНИЯ
 *   ИСПОЛЬЗУЙТЕ ДОЧЕРНЮЮ ТЕМУ ИЛИ НАСТРОЙКИ ТЕМЫ В АДМИНКЕ
 *
 *   ПОДБРОБНЕЕ:
 *   https://docs.wpshop.ru/child-themes/
 *
 * *****************************************************************************
 *
 * @package Root
 */

$is_show_category   = root_get_option( 'structure_slider_show_category' );
$is_show_excerpt    = root_get_option( 'structure_slider_show_excerpt' );

?>


    <div class="swiper-slide">

        <a href="<?php the_permalink() ?>">
            <div class="card-slider__image">
                <?php $thumb = get_the_post_thumbnail( $post->ID, 'full', array('itemprop'=>'image') ); if ( ! empty( $thumb ) ): ?>
                    <?php echo $thumb ?>
                <?php endif ?>
            </div>

            <div class="card-slider__body">
                <?php if ( $is_show_category ) : ?>
                    <div class="card-slider__category">
                        <?php echo root_category( $post->ID, '', true, false ) ?>
                    </div>
                <?php endif; ?>

                <div class="card-slider__title"><?php the_title() ?></div>
                <?php
                if ( $is_show_excerpt ) :
                    echo '<div class="card-slider__excerpt">';
                    add_filter('get_the_excerpt', 'remove_the_content_add_ad_filter', 9);
                    echo do_excerpt( get_the_excerpt(), 14 );
                    add_filter('get_the_excerpt', 'add_the_content_add_ad_filter', 11);
                    echo '</div>';
                endif;
                ?>
            </div>
        </a>

    </div>