File "post-gallery-loop.php"
Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/bb-plugin/modules/post-carousel/includes/post-gallery-loop.php
File size: 2.01 KB
MIME-type: --
Charset: utf-8
<?php
$no_thumb = !has_post_thumbnail( get_the_ID() ) ? ' fl-post-no-thumb' : '';
$post_icon_position = isset( $settings->post_icon_position ) ? $settings->post_icon_position : 'above';
?>
<div class="fl-post-carousel-post<?php echo $no_thumb ?>" itemscope="itemscope" itemtype="<?php FLPostGridModule::schema_itemtype(); ?>">
<?php FLPostGridModule::schema_meta(); ?>
<a class="fl-post-carousel-link" href="<?php the_permalink(); ?>" alt="<?php the_title_attribute(); ?>">
<?php if( has_post_thumbnail( get_the_ID() ) ) $module->render_img() ?>
<?php if( !has_post_thumbnail( get_the_ID() ) ) : ?>
<div class="fl-post-carousel-ratio"></div>
<?php endif; ?>
<div class="fl-post-carousel-text-wrap">
<div class="fl-post-carousel-text">
<?php if( $settings->post_has_icon && $post_icon_position == 'above' ) : ?>
<span class="fl-carousel-icon">
<i class="<?php echo $settings->post_icon; ?>"></i>
</span>
<?php endif; ?>
<h2 class="fl-post-carousel-title" itemprop="headline"><?php the_title(); ?></h2>
<?php if($settings->show_author || $settings->show_date) : ?>
<div class="fl-post-carousel-meta">
<?php if( $settings->show_author ) : ?>
<span class="fl-post-carousel-author">
<?php
printf(
_x( 'By %s', '%s stands for author name.', 'fl-builder' ),
'<span>' . get_the_author_meta( 'display_name', get_the_author_meta( 'ID' ) ) . '</span>'
);
?>
</span>
<?php endif; ?>
<?php if( $settings->show_date ) : ?>
<?php if( $settings->show_author ) : ?>
<span> | </span>
<?php endif; ?>
<time class="fl-post-carousel-date">
<?php FLBuilderLoop::post_date($settings->date_format); ?>
</time>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if( $settings->post_has_icon && $post_icon_position == 'below' ) : ?>
<span class="fl-carousel-icon">
<i class="<?php echo $settings->post_icon; ?>"></i>
</span>
<?php endif; ?>
</div>
</div>
</a>
</div>