![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/themes/dt-the7/inc/shortcodes/includes/blog-carousel/ |
<?php /** * Masonry blog layout template. */ defined( 'ABSPATH' ) || exit; $config = presscore_config(); ?> <?php if ( ! empty( $post_media ) ) : ?> <div class="post-thumbnail-wrap"> <div class="post-thumbnail"> <?php echo presscore_get_blog_post_fancy_date(); ?> <?php if ( $config->get( 'post.fancy_category.enabled' ) ) { $fancy_category_args = ( isset( $fancy_category_args ) ? $fancy_category_args : array() ); echo presscore_get_post_fancy_category( $fancy_category_args ); } ?> <?php echo $post_media; ?> </div> </div> <?php endif; ?> <div class="post-entry-content"> <h3 class="entry-title"> <a href="<?php the_permalink(); ?>" title="<?php echo the_title_attribute( 'echo=0' ); ?>" rel="bookmark"><?php the_title(); ?></a> </h3> <?php echo presscore_get_posted_on(); ?> <?php if ( $config->get( 'show_excerpts' ) && isset( $post_excerpt ) ) { echo '<div class="entry-excerpt">'; echo $post_excerpt; echo '</div>'; } ?> <?php if ( $config->get( 'show_details' ) && isset( $details_btn ) ) { echo $details_btn; } ?> </div>