Advertisement
arie_cristianD

override_archive_page

Jul 26th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.92 KB | None | 0 0
  1. <?php
  2.     get_header();
  3.     $archive = new \JNews\Archive\SingleArchive();
  4. ?>
  5.  
  6. <div class="jeg_main <?php $archive->main_class(); ?>">
  7.     <div class="jeg_container">
  8.         <div class="jeg_content">
  9.             <div class="jeg_section">
  10.                 <div class="container">
  11.  
  12.                     <?php do_action( 'jnews_archive_above_content' ); ?>
  13.  
  14.                     <div class="jeg_cat_content row">
  15.                         <div class="jeg_main_content col-sm-<?php echo esc_attr($archive->get_content_width()); ?>">
  16.                             <div class="jeg_inner_content">
  17.                                 <div class="jeg_archive_header">
  18.                                     <?php if (jnews_can_render_breadcrumb() && jnews_show_breadcrumb() ): ?>
  19.                                         <div class="jeg_breadcrumbs jeg_breadcrumb_container">
  20.                                             <?php echo jnews_sanitize_output( $archive->render_breadcrumb() ); ?>
  21.                                         </div>
  22.                                     <?php endif; ?>
  23.                                    
  24.                                     <?php the_archive_title( '<h1 class="jeg_archive_title">', '</h1>' ); ?>
  25.                                     <?php the_archive_description( '<div class="jeg_archive_description">', '</div>' ); ?>
  26.                                 </div>
  27.                                
  28.                                 <div class="jnews_archive_content_wrapper">
  29.                                     <?php echo jnews_sanitize_output( $archive->render_content() ); ?>
  30.                                 </div>
  31.  
  32.                             </div>
  33.                         </div>
  34.                         <?php $archive->render_sidebar(); ?>
  35.                     </div>
  36.                 </div>
  37.             </div>
  38.         </div>
  39.         <?php do_action('jnews_after_main'); ?>
  40.     </div>
  41. </div>
  42.  
  43.  
  44. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement