
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

/* -----------------------------------------------------------------------------
 * More Article
 * -------------------------------------------------------------------------- */
add_action( 'wp_footer', 'presso_setup_more_article' );
if ( ! function_exists( 'presso_setup_more_article' ) ) {
	function presso_setup_more_article() {
		if ( is_single() && 'post' == get_post_type() && presso_get_theme_option( 'enable_more_articles' ) ) {
			presso_the_more_article();
		}
	}
}


/* -----------------------------------------------------------------------------
 * Render More Article
 * -------------------------------------------------------------------------- */
if ( ! function_exists( 'presso_the_more_article' ) ) {
	function presso_the_more_article() {

		$query_args = array(
			'post__not_in' => array( get_queried_object_id() ),
			'post_order' => 'random',
			'posts_per_page' => 1,
			'has_post_thumbnail' => true,
			'layout' => 'block-h-1',
		);

		set_query_var( 'more_articles_query_args', apply_filters( 'presso_filter_more_article_query_args', $query_args ) );

		get_template_part( 'templates/single/more-articles' );

	}
}
