OwlCyberSecurity - MANAGER
Edit File: archive-sermon.php
<?php if ( !defined( 'ABSPATH' ) ) exit(); get_header(); $number_column = get_theme_mod( 'ova_sermon_layout', 'three_column' ); ?> <div class="row_site"> <div class="container_site"> <div class="archive_sermon"> <div class="content <?php echo esc_attr( $number_column ) ?>"> <?php if( have_posts() ) : while ( have_posts() ) : the_post(); ovasermon_get_template( 'parts/item-sermon.php' ); endwhile; endif; wp_reset_postdata(); ?> </div> <?php $args = array( 'type' => 'list', 'next_text' => '<i class="ovaicon-next"></i>', 'prev_text' => '<i class="ovaicon-back"></i>', ); the_posts_pagination($args); ?> </div> </div> </div> <?php get_footer();