Advertisement
arie_cristianD

show post excerpt in single post

Oct 24th, 2023
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.60 KB | None | 0 0
  1. <?php
  2.     $single = JNews\Single\SinglePost::getInstance();
  3. ?>
  4. <div class="jeg_content jeg_singlepage">
  5.  
  6.     <div class="container">
  7.  
  8.         <div class="jeg_ad jeg_article jnews_article_top_ads">
  9.             <?php do_action( 'jnews_article_top_ads' ); ?>
  10.         </div>
  11.  
  12.         <div class="row">
  13.             <div class="jeg_main_content col-md-<?php echo esc_attr( $single->main_content_width() ); ?>">
  14.                 <div class="jeg_inner_content">
  15.                     <?php
  16.                     if ( have_posts() ) :
  17.                         the_post();
  18.                         ?>
  19.  
  20.                         <?php if ( jnews_can_render_breadcrumb() && jnews_show_breadcrumb() ) : ?>
  21.                         <div class="jeg_breadcrumbs jeg_breadcrumb_container">
  22.                             <?php $single->render_breadcrumb(); ?>
  23.                         </div>
  24.                         <?php endif; ?>
  25.  
  26.                         <div class="entry-header">
  27.                             <?php do_action( 'jnews_single_post_before_title', get_the_ID() ); ?>
  28.  
  29.                             <h1 class="jeg_post_title"><?php the_title(); ?></h1>
  30.  
  31.                             <?php if ( ! $single->is_subtitle_empty() ) : ?>
  32.                                 <h2 class="jeg_post_subtitle"><?php echo esc_html( $single->render_subtitle() ); ?></h2>
  33.                             <?php endif; ?>
  34.                             <h2 class="jeg_post_subtitle"><?php echo esc_html( wp_kses( get_the_excerpt( get_the_ID() ), wp_kses_allowed_html() ) ); ?></h2>
  35.  
  36.                             <div class="jeg_meta_container"><?php $single->render_post_meta(); ?></div>
  37.                         </div>
  38.  
  39.                         <?php $single->render_featured_post(); ?>
  40.  
  41.                         <?php do_action( 'jnews_share_top_bar', get_the_ID() ); ?>
  42.  
  43.                         <?php do_action( 'jnews_single_post_before_content' ); ?>
  44.  
  45.                         <div class="entry-content <?php echo esc_attr( $single->share_float_additional_class() ); ?>">
  46.                             <div class="jeg_share_button share-float jeg_sticky_share clearfix <?php $single->share_float_style_class(); ?>">
  47.                                 <?php do_action( 'jnews_share_float_bar', get_the_ID() ); ?>
  48.                             </div>
  49.  
  50.                             <div class="content-inner <?php echo apply_filters( 'jnews_content_class', '', get_the_ID() ); ?>">
  51.                                 <?php the_content(); ?>
  52.                                 <?php wp_link_pages(); ?>
  53.  
  54.                                 <?php do_action( 'jnews_source_via_single_post' ); ?>
  55.  
  56.                                 <?php if ( has_tag() ) { ?>
  57.                                 <div class="jeg_post_tags"><?php $single->post_tag_render(); ?></div>
  58.                                 <?php } ?>
  59.                             </div>
  60.  
  61.  
  62.                         </div>
  63.                         <?php do_action( 'jnews_share_bottom_bar', get_the_ID() ); ?>
  64.  
  65.                         <?php do_action( 'jnews_push_notification_single_post' ); ?>
  66.  
  67.                         <?php do_action( 'jnews_single_post_after_content' ); ?>
  68.  
  69.                     <?php endif; ?>
  70.                 </div>
  71.             </div>
  72.             <?php $single->render_sidebar(); ?>
  73.         </div>
  74.  
  75.         <div class="jeg_ad jeg_article jnews_article_bottom_ads">
  76.             <?php do_action( 'jnews_article_bottom_ads' ); ?>
  77.         </div>
  78.  
  79.     </div>
  80. </div>
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement