-
Notifications
You must be signed in to change notification settings - Fork 2
/
navigation.php
37 lines (30 loc) · 914 Bytes
/
navigation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
* Template Name: Navigation
*/
?>
<!--hr /-->
<?php if ( is_attachment() ) { ?>
<div class="navigation">
<div class="left"><?php previous_image_link( 0 ) ?></div>
<div class="right"><?php next_image_link( 0 ) ?></div>
<div class="clear"></div>
</div>
<?php } elseif ( is_single() ) { ?>
<div class="navigation">
<div class="left"><?php previous_post_link() ?></div>
<div class="right"><?php next_post_link() ?></div>
<div class="clear"></div>
</div>
<?php } else { ?>
<div class="navigation">
<?php if(function_exists('wp_pagenavi')) {
wp_pagenavi();
} else { ?>
<div class="left"><?php next_posts_link('<span>«</span> Older Entries') ?></div>
<div class="right"><?php previous_posts_link('Newer Entries <span>»</span>') ?></div>
<div class="clear"></div>
<?php } ?>
</div>
<?php } ?>
<!--hr /-->