
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
$featured_layout = presso_get_theme_option( 'archive_featured_posts_layout' );
if ( 'none' != $featured_layout ) {
	$args = presso_get_main_query_args();
	$args += array(
		'post_order' => presso_get_theme_option( 'archive_featured_posts_source' ),
		'layout' => $featured_layout,
		'after' => '<br>',
		'posts_per_page' => presso_get_theme_option( 'archive_featured_posts_count' ),
	);

	presso_the_post_loop( $args );
}
?>