?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/blog/templates/single/parts/



?? Go up: /home/webdevt/www/wdp/wp-content/themes/quadric/framework/modules/blog/templates/single

?? Viewing: single-navigation.php

<?php if(edgtf_quadric_options()->getOptionValue('blog_single_navigation') == 'yes'){ ?>
	<?php $navigation_blog_through_category = edgtf_quadric_options()->getOptionValue('blog_navigation_through_same_category') ?>
	<div class="edgtf-blog-single-navigation">
		<div class="edgtf-blog-single-navigation-inner">
			<?php if(get_previous_post() != ""){ ?>
				<div class="edgtf-blog-single-prev">
					<?php
					if($navigation_blog_through_category == 'yes'){
						previous_post_link('%link','<', true,'','category');
					} else {
						previous_post_link('%link','<');
					}
					?>
				</div> <!-- close div.blog_prev -->
			<?php } ?>
			<?php if(get_next_post() != ""){ ?>
				<div class="edgtf-blog-single-next">
					<?php
					if($navigation_blog_through_category == 'yes'){
						next_post_link('%link','>', true,'','category');
					} else {
						next_post_link('%link','>');
					}
					?>
				</div>
			<?php } ?>
		</div>
	</div>
<?php } ?>


??

??