Your IP : 216.73.216.68


Current Path : /home/sunflowe/www2/disneyexplorer/wp-content/themes/wide/templates/
Upload File :
Current File : /home/sunflowe/www2/disneyexplorer/wp-content/themes/wide/templates/post_pagination.php

<div class="entry_pagination">
	<div class="post-pagination pagination clearfix">

		<?php
		$prev_post = get_previous_post();
		$next_post = get_next_post();
		?>

		<?php if (!empty( $prev_post )) : ?>
			<a class="page-numbers pull-left page-prev" title="prev post" href="<?php echo esc_url(get_permalink( $prev_post->ID )); ?>">
				<i class="ti-arrow-left" aria-hidden="true"></i>
				<span class="btn-prev"><?php echo esc_html__('Prev','wide')?></span>
				<p class="title-pagination"><?php echo esc_attr($prev_post->post_title); ?></p>
			</a>
		<?php endif; ?>

		<?php if (!empty( $next_post )) : ?>
			<a class="page-numbers pull-right page-next" title="next post" href="<?php echo esc_url(get_permalink( $next_post->ID )); ?>">
				<span class="btn-next"><?php echo esc_html__('Next','wide')?></span>
				<i class="ti-arrow-right" aria-hidden="true"></i>
				<p class="title-pagination"><?php echo esc_attr($next_post->post_title); ?></p>
			</a>
		<?php endif; ?>

	</div>
</div>