';
// Number of posts to show / view
$limit = get_theme_mod( 'shapely_howmany_blog_posts', 3 );
$show_title = get_theme_mod( 'shapely_enable_related_title_blog_posts', true );
$show_date = get_theme_mod( 'shapely_enable_related_date_blog_posts', false );
$auto_play = get_theme_mod( 'shapely_autoplay_blog_posts', true );
echo '
';
/*
* Heading
*/
echo '
';
if ( is_singular( 'jetpack-portfolio' ) ) {
echo '
' . esc_html__( 'Related projects', 'shapely' ) . '
';
} else {
echo '' . esc_html__( 'Related articles ', 'shapely' ) . '
';
}
echo '';
echo '
';
/*
* Arrows
*/
echo '
';
echo '
';
echo ' ';
echo ' ';
echo '
';
echo '
';
echo sprintf(
'
', get_the_ID(), get_the_ID(), absint( $limit ), esc_html( $auto_play )
);
// Loop through related posts
while ( $related_posts->have_posts() ) {
$related_posts->the_post();
echo '
';
}
echo '
';
echo '
';
wp_reset_postdata();
}
}
}// End if().