Sindbad~EG File Manager
<?php
// https://codex.wordpress.org/Category_Templates
get_header(); ?>
<!-- <?php echo basename(__FILE__) ?> -->
<div class="container">
<?php if ( $content->have_posts() ) : ?>
<header class="page-header">
<?php
single_term_title( '<h1 class="page-title pretitle">', '</h1>' );
?>
</header><!-- .page-header -->
<?php endif; ?>
<main id="main" class="site-main" role="main">
<?php
// The Loop
$cont = 0;
if ( $content->have_posts() ) {
echo '<div class="row">';
while ( $content->have_posts() ) {
$cont++;
$content->the_post();
$module_class = 'col-md-12';
echo '<div class="item col-sm-12 '.$module_class.'">';
get_template_part( 'template-parts/post/content', 'excerpt');
echo '</div>';
if($cont + 1 % $columns == 0){
echo '</div>';
echo '<div class="row">';
}
}
echo '</div>';
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}
?>
</main><!-- #main -->
</div><!-- .wrap -->
<?php get_footer();
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists