mangapress_comic_navigation
Last updated
Last updated
<div class="container">
<?php if (have_posts()): ?>
<div class="hfeed">
<?php while (have_posts()): the_post() : ?>
<div <?php post_class(); ?>>
<?php mangapress_comic_navigation($args); ?>
<h2><?php the_title(); ?></h2>
<div class="entry-content">
<?php the_post_thumbnail(); ?>
</div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
</div>