Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter Serkol

    (@serkol)

    Here’s what I have so far… seems close when I load the page.

    <?php
    /**
     * The template for displaying recent posts
     * Template Name: recent
     * @package Bose
     */
    
    get_header(); ?>
    	<div class="header-title col-md-12">
    	<span><?php the_title(); ?></span>
    	</div>
    		<div id="primary-mono" class="content-area col-md-12">
    		<main id="main" class="site-main" role="main">
    
    			<?php $count = 0; ?>
    			<?php if ( have_posts() ) : ?>
    			<?php /* Start the Loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    
    				<?php
    				do_action('bose-layout');
    				$count++;
    				?>
    
    			<?php endwhile; ?>
    			<?php endif; ?>
    
    		</main>
    		</div>
    
    <?php get_footer(); ?>
Viewing 1 replies (of 1 total)