Advertisement
arie_cristianD

single-post-10.php

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