| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- /**
- * Template part for displaying posts
- *
- * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
- *
- * @package XShop
- */
- $xshop_lite_blog_style = get_theme_mod( 'xshop_lite_blog_style', 'list' );
- if( $xshop_lite_blog_style == 'list' && !is_single() ):
- get_template_part( 'template-parts/content', 'list' );
- elseif( $xshop_lite_blog_style == 'grid' && !is_single() ):
- get_template_part( 'template-parts/content', 'grid' );
- else:
- ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="xpost-item shadow pb-5 mb-5">
- <?php xshop_post_thumbnail(); ?>
- <div class="xpost-text p-3">
- <header class="entry-header text-center pb-4">
- <?php
- if ( is_singular() ) :
- the_title( '<h1 class="entry-title">', '</h1>' );
- else :
- the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
- endif;
- if ( 'post' === get_post_type() ) :
- ?>
- <div class="entry-meta">
- <?php
- xshop_posted_on();
- xshop_posted_by();
- ?>
- </div><!-- .entry-meta -->
- <?php endif; ?>
- </header><!-- .entry-header -->
- <div class="entry-content">
- <?php
- if(is_single()){
- the_content(
- sprintf(
- wp_kses(
- /* translators: %s: Name of current post. Only visible to screen readers */
- __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'xshop-lite' ),
- array(
- 'span' => array(
- 'class' => array(),
- ),
- )
- ),
- wp_kses_post( get_the_title() )
- )
- );
- wp_link_pages(
- array(
- 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'xshop-lite' ),
- 'after' => '</div>',
- )
- );
- }else{
- the_excerpt( );
- }
- ?>
- </div><!-- .entry-content -->
- <footer class="entry-footer">
- <?php xshop_entry_footer(); ?>
- </footer><!-- .entry-footer -->
- </div>
- </div>
- </article><!-- #post-<?php the_ID(); ?> -->
- <?php endif; ?>
|