D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
danluatbos
/
domains
/
danluatbook.com
/
public_html
/
wp-content
/
themes
/
newsmash
/
Filename :
single.php
back
Copy
<?php /** * The template for displaying archive pages. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package NewsMash */ get_header(); $newsmash_single_pg_sidebar_option = get_theme_mod('newsmash_single_pg_sidebar_option', 'right_sidebar'); $newsmash_hs_latest_post_title = get_theme_mod('newsmash_hs_latest_post_title','1'); $newsmash_hs_latest_post_tag_meta = get_theme_mod('newsmash_hs_latest_post_tag_meta','1'); $newsmash_hs_latest_post_auth_meta = get_theme_mod('newsmash_hs_latest_post_auth_meta','1'); $newsmash_hs_latest_post_date_meta = get_theme_mod('newsmash_hs_latest_post_date_meta','1'); $newsmash_hs_latest_post_comment_meta = get_theme_mod('newsmash_hs_latest_post_comment_meta','1'); $newsmash_hs_latest_post_content_meta= get_theme_mod('newsmash_hs_latest_post_content_meta','1'); $newsmash_hs_latest_post_social_share= get_theme_mod('newsmash_hs_latest_post_social_share'); $newsmash_latest_post_rm_type= get_theme_mod('newsmash_latest_post_rm_type','style-2'); $newsmash_latest_post_rm_lbl= get_theme_mod('newsmash_latest_post_rm_lbl','Continue reading'); $format = get_post_format() ? : 'standard'; ?> <div class="dt-container-md"> <div class="dt-row"> <?php if($newsmash_single_pg_sidebar_option == 'left_sidebar'): get_sidebar(); endif; ?> <div class="dt-col-lg-8 content-right"> <div class="post post-single"> <?php if( have_posts() ): // Start the loop. while( have_posts() ): the_post(); newsmash_set_post_view(); ?> <div class="post-header"> <?php if($newsmash_hs_latest_post_title=='1'): newsmash_common_post_title('h1','title dt-mt-0 dt-mb-3'); endif; ?> <ul class="meta list-inline dt-mt-0 dt-mb-0"> <?php if($newsmash_hs_latest_post_auth_meta=='1'): ?> <?php do_action('newsmash_common_post_author'); ?> <?php endif; ?> <?php if($newsmash_hs_latest_post_tag_meta=='1'): the_category(' , '); endif; ?> <?php if($newsmash_hs_latest_post_date_meta=='1'): ?> <li class="list-inline-item"><?php echo esc_html(get_the_date( 'F j, Y' )); ?></li> <?php endif; ?> <?php if($newsmash_hs_latest_post_comment_meta=='1'): ?> <li class="list-inline-item"><i class="far fa-comments"></i> <?php echo esc_html(get_comments_number($post->ID)); ?> <?php esc_html_e('Comments','newsmash'); ?> </li> <?php endif; ?> </ul> </div> <article class="is-single post-content clearfix post has-post-thumbnail"> <div class="clearfix"> <?php if ( has_post_thumbnail() ) { ?> <div class="featured-image"> <?php the_post_thumbnail(); ?> </div> <?php } ?> <?php if($newsmash_hs_latest_post_content_meta=='1'): ?> <?php the_content( sprintf( __( 'Read More', 'newsmash' ), '<span class="screen-reader-text"> '.esc_html(get_the_title()).'</span>' ) ); ?> <?php endif; ?> </div> <footer class="clearfix"> <div class="post-bottom"> <div class="dt-row dt-d-flex dt-align-items-center"> <div class="dt-col-md-6 dt-col-12"> <?php if($newsmash_hs_latest_post_social_share=='1'): ?> <?php newsmash_post_sharing(); ?> <?php endif; ?> </div> <div class="dt-col-md-6 dt-col-12 dt-text-center dt-text-md-right"> <div class="tags"> <?php if($newsmash_hs_latest_post_tag_meta=='1'): $posttags = get_the_tags(); if($posttags){ foreach($posttags as $index=>$tag){ echo '<a href="'.esc_url(get_tag_link($tag->term_id)).'">' .esc_html($tag->name). '</a>'; } } endif; ?> </div> </div> </div> </div> </footer> </article> <?php endwhile; // End the loop. endif; // Author Box $newsmash_hs_single_author_option = get_theme_mod('newsmash_hs_single_author_option','1'); if($newsmash_hs_single_author_option == '1'){ get_template_part('template-parts/content','author'); } $newsmash_hs_single_post_nav = get_theme_mod('newsmash_hs_single_post_nav','1'); if($newsmash_hs_single_post_nav == '1'){ ?> <div class="dt-row nextprev-post-wrapper"> <?php the_post_navigation(array( 'prev_text' => '<div class="nextprev-post prev"><h5 class="post-title"> %title </h5></div>', 'next_text' => '<div class="nextprev-post prev"><h5 class="post-title"> %title </h5></div>', 'in_same_term' => true, )); ?> </div> <?php } $newsmash_hs_single_related_post = get_theme_mod('newsmash_hs_single_related_post','1'); if($newsmash_hs_single_related_post == '1'){ get_template_part('template-parts/content','related'); } comments_template( '', true ); // show comments ?> </div> </div> <?php if($newsmash_single_pg_sidebar_option == 'right_sidebar'): get_sidebar(); endif; ?> </div> </div> <?php get_footer(); ?>