/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
themes
/
flatsome-child
/
template-parts
/
posts
/
partials
/
Upload File
HOME
<?php /** * Post-entry title. * * @package Flatsome\Templates * @flatsome-version 3.18.0 */ if ( is_single() ) : if ( get_theme_mod( 'blog_single_header_category', 1 ) ) : echo '<h6 class="entry-category is-xsmall">'; echo get_the_category_list( __( ', ', 'flatsome' ) ); echo '</h6>'; endif; else : echo '<h6 class="entry-category is-xsmall">'; echo get_the_category_list( __( ', ', 'flatsome' ) ); echo '</h6>'; endif; if ( is_single() ) : if ( get_theme_mod( 'blog_single_header_title', 1 ) ) : if (function_exists('rank_math_the_breadcrumbs')) rank_math_the_breadcrumbs(); echo '<h1 class="entry-title">' . get_the_title() . '</h1>'; endif; else : echo '<h2 class="entry-title"><a href="' . get_the_permalink() . '" rel="bookmark" class="plain">' . get_the_title() . '</a></h2>'; echo '<div class="entry-divider is-divider small"></div>'; endif; ?> <?php $single_post = is_singular( 'post' ); if ( $single_post && get_theme_mod( 'blog_single_header_meta', 1 ) ) : ?> <div class="entry-meta uppercase is-small entry-meta-top"> <span class="posted-on"><time class="entry-date published updated" datetime="<?php echo get_the_time('l, d/m/y', get_the_ID()); ?>"><?php echo get_the_time('l, d/m/y', get_the_ID()); ?></time></span> <?php echo do_shortcode( '[share style="small"]' ); ?> </div> <?php elseif ( ! $single_post && 'post' == get_post_type() ) : ?> <div class="entry-meta uppercase is-xsmall"> <?php flatsome_posted_on(); ?> </div> <?php endif; ?>