
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

if ( ! function_exists( 'presso_get_ticker_posts' ) ) {
	function presso_get_ticker_posts() {
		// Prepare query args
		$args = array(
			'posts_per_page'=> presso_get_theme_option( 'ticker_count' ),
			'post_order'=> presso_get_theme_option( 'ticker_source' ),
		);

		wp_enqueue_script( 'jquery-easy-ticker' );

		return new WP_Query( apply_filters( 'presso_filter_ticker_query_args', presso_build_query( $args ) ) );
	}
}