Default
Out of the box layout and styling of Ajax Load More
<li class="alm-item <?php if (! has_post_thumbnail() ) { echo ' no-img'; } ?>">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail('alm-thumbnail');
}?>
<h3>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h3>
<p class="entry-meta"><?php the_time("F d, Y"); ?></p>
<?php the_excerpt(); ?>
</li>
PHPThe following shortcode was used to create the Default example.
[ajax_load_more]
The following Repeater Template was used to create the Default example.