| Server IP : 217.160.0.154 / Your IP : 216.73.217.138 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u97626428 ( 1555483) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/13/d787277790/htdocs/clickandbuilds/URP/wp-content.orig/themes/marketingly/ |
Upload File : |
<?php /** * The template for displaying archive pages * * @link https://codex.wordpress.org/Template_Hierarchy * * @package marketingly */ get_header(); ?> <div id="primary" class="featured-content content-area"> <main id="main" class="site-main all-blog-articles"> <?php if ( have_posts() ) : ?> <header class="fbox page-header"> <?php the_archive_title( '<h1 class="page-title">', '</h1>' ); the_archive_description( '<div class="archive-description">', '</div>' ); ?> </header><!-- .page-header --> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'template-parts/content', get_post_format() ); endwhile; echo '<div class="text-center pag-wrapper">'; marketingly_numeric_posts_nav(); echo '</div>'; else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php get_sidebar(); get_footer();