mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/colordive.git
synced 2026-07-16 11:36:39 +08:00
86 lines
No EOL
3 KiB
PHP
86 lines
No EOL
3 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div class="blog-wrapper">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('blog-single'); ?>>
|
|
|
|
<header class="blog-single-header">
|
|
|
|
<?php do_action( 'alx_ext_sharrre' ); ?>
|
|
|
|
<?php if ( get_theme_mod( 'header-featured-image', 'on' ) == 'on' ): ?>
|
|
|
|
<?php if ( has_post_thumbnail() ) : ?>
|
|
<div class="blog-single-featured-image">
|
|
<?php the_post_thumbnail('colordive-large'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<div class="blog-card-bottom">
|
|
|
|
<div class="blog-card-date"><i class="far fa-calendar"></i> <?php the_time( get_option('date_format') ); ?></div>
|
|
<div class="blog-card-category"><i class="far fa-folder"></i> <?php the_category(' / '); ?></div>
|
|
|
|
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) =='on' ) ): ?>
|
|
<?php $number = get_comments_number( $post->ID ); if ( $number > 0 ) { ?>
|
|
<a class="card-comments" href="<?php comments_link(); ?>"><strong><i class="far fa-comment-alt"></i> <span><?php comments_number( '0', '1', '%' ); ?></span></strong></a>
|
|
<?php } ?>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<h1 class="blog-single-title"><?php the_title(); ?></h1>
|
|
|
|
<div class="blog-single-byline">
|
|
<a href="<?php echo get_author_posts_url(get_the_author_meta( 'ID' )); ?>" class="blog-single-author">
|
|
<div class="blog-single-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'36'); ?></div>
|
|
<span><?php esc_html_e('by','colordive'); ?> <?php the_author(); ?></span>
|
|
</a>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="entry themeform">
|
|
<?php the_content(); ?>
|
|
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','colordive'),'after'=>'</div>')); ?>
|
|
<div class="clear"></div>
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<div class="entry-footer group">
|
|
|
|
<?php the_tags('<p class="post-tags"><span>'.esc_html__('Tags:','colordive').'</span> ','','</p>'); ?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php if ( ( get_theme_mod( 'author-bio', 'on' ) == 'on' ) && get_the_author_meta( 'description' ) ): ?>
|
|
<div class="author-bio">
|
|
<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
|
|
<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
|
|
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'alx_ext_sharrre_footer' ); ?>
|
|
|
|
<?php if ( get_theme_mod( 'post-nav', 'content' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>
|
|
|
|
<div class="entry-comments themeform">
|
|
<?php comments_template(); ?>
|
|
</div>
|
|
|
|
<?php if ( get_theme_mod( 'related-posts', 'categories' ) != 'disable' ) { get_template_part('inc/related-posts'); } ?>
|
|
|
|
</div><!--/.entry-footer-->
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|