mirror of
https://ghproxy.net/https://github.com/AlxMedia/splits.git
synced 2025-08-25 17:31:58 +08:00
72 lines
No EOL
2.6 KiB
PHP
72 lines
No EOL
2.6 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div id="split-left" class="stickyfill group">
|
|
|
|
<div id="split-left-top" class="pad">
|
|
<p class="post-date"><?php the_time( get_option('date_format') ); ?></p>
|
|
<h1 class="post-title"><?php the_title(); ?></h1>
|
|
<p class="post-category"><?php the_category(' / '); ?></p>
|
|
</div>
|
|
|
|
<?php if( !get_post_format() ) :?>
|
|
<div class="image-container">
|
|
<?php if ( has_post_thumbnail() ) {
|
|
the_post_thumbnail('split-large');
|
|
$caption = get_post(get_post_thumbnail_id())->post_excerpt;
|
|
if ( isset($caption) && $caption ) echo '<div class="image-caption">'.$caption.'</div>';
|
|
} ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
|
|
|
|
<?php do_action( 'alx_ext_sharrre' ); ?>
|
|
|
|
</div><!--/#split-left-->
|
|
|
|
<div id="split-right">
|
|
|
|
<div class="content pad">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
<article <?php post_class(); ?>>
|
|
<div class="post-inner group">
|
|
<p class="post-byline"><?php echo get_avatar(get_the_author_meta('user_email'),'64'); ?><?php esc_html_e('by','split'); ?> <?php the_author_posts_link(); ?></p>
|
|
|
|
<div class="entry themeform">
|
|
<div class="entry-inner">
|
|
<?php the_content(); ?>
|
|
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','split'),'after'=>'</div>')); ?>
|
|
</div>
|
|
<div class="clear"></div>
|
|
<?php the_tags('<p class="post-tags"><span>'.esc_html__('Tags:','split').'</span> ','','</p>'); ?>
|
|
|
|
</div><!--/.entry-->
|
|
|
|
</div><!--/.post-inner-->
|
|
</article><!--/.post-->
|
|
<?php endwhile; ?>
|
|
|
|
<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 esc_html_e('Written by','split'); ?> <?php the_author_posts_link(); ?></p>
|
|
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( get_theme_mod( 'post-nav', 's1' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>
|
|
|
|
<?php if ( get_theme_mod( 'related-posts', 'categories' ) != 'disable' ) { get_template_part('inc/related-posts'); } ?>
|
|
|
|
<?php if ( get_theme_mod( 'post-comments', 'on' ) == 'on' ) { comments_template('/comments.php',true); } ?>
|
|
|
|
</div><!--/.content-->
|
|
|
|
</div><!--/#split-right-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|