
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
global $presso_secondary_query;
$presso_secondary_query = presso_get_ticker_posts();

if ( ! empty( $presso_secondary_query ) && $presso_secondary_query->have_posts() ) : ?>

<div class="vw-ticker vw-fixed-bar">
	<div class="vw-ticker__label"><?php esc_html_e( 'Latest', 'presso' ); ?></div>
	<div class="vw-ticker__list">
		<ul class="">
			<?php while ( presso_secondary_query_have_posts() ) : $presso_secondary_query->the_post(); ?>
				<li><a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark"><?php the_title(); ?></a></li>
			<?php endwhile; ?>
		</ul>
	</div>
</div>

<?php wp_reset_postdata();
endif;?>