OwlCyberSecurity - MANAGER
Edit File: category.php
<?php /** * The template for displaying Category pages. * */ get_header(); ?> <div id="main" class="content djax-updatable"> <?php if ( have_posts() ) : //lets handle the title display //we will use the page title ?> <div class="masonry" data-columns> <div class="masonry__item masonry__item--archive-title"> <div class="entry__header"> <h1 class="entry__title"><?php printf( __( 'Category Archives: %s', wpgrade::textdomain() ), single_cat_title( '', false ) ); ?></h1> </div> <div class="entry__content"><?php echo category_description(); ?></div> </div><!-- .masonry__item --> <?php while ( have_posts() ) : the_post(); get_template_part('theme-partials/post-templates/blog-content'); endwhile; ?> </div><!-- .masonry --> <div class="masonry__pagination"><?php echo wpgrade::pagination(); ?></div> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> </div> <?php get_footer(); ?>