';
if (have_posts()): ?>
';
// Start the loop.
while (have_posts()):
the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
if ($boatdealer_blog_style == '3')
get_template_part('content-masonry', get_post_format());
elseif ($boatdealer_blog_style == '2')
get_template_part('content-list', get_post_format());
else
get_template_part('content', get_post_format());
// End the loop.
endwhile;
if ($boatdealer_blog_style == '3' or $boatdealer_blog_style == '2')
echo '
';
// Previous/next page navigation.
the_posts_pagination(array(
'prev_text' => __('Previous page', 'boatdealer'),
'next_text' => __('Next page', 'boatdealer'),
'before_page_number' => '' . __('Page',
'boatdealer') . ' ',
));
// If no content, include the "No posts found" template.
else:
get_template_part('content', 'none');
endif;
echo '';
echo '';
get_footer();
function get_the_content_with_formatting()
{
$content = get_the_content();
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
return $content;
}
function excerpt($limit)
{
$excerpt = wp_trim_words(get_the_excerpt(), $limit);
$excerpt = preg_replace('`\[[^\]]*\]`', '', $excerpt);
return '' . $excerpt . '
';
} ?>