Advertisement
arie_cristianD

override_single_post_2

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