11
Jun
2011
Jun
2011
Cara membuat pagebar / page number wp tanpa plugin
Posted by: adminCara membuat pagebar / page number wordpress tanpa plugin.
1) Pasang kode php berikut ini pada template index.php, archive.php, dan search.php.
Salin kode 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 38 39 40 | < ?php function kriesi_pagination($pages = '', $range = 2) { $showitems = ($range * 2)+1; global $paged; if(empty($paged)) $paged = 1; if($pages == '') { global $wp_query; $pages = $wp_query->max_num_pages; if(!$pages) { $pages = 1; } } if(1 != $pages) { echo "<div class='pagination'>"; if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>«"; if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹"; for ($i=1; $i < = $pages; $i++) { if (1 != $pages &&( !($i >= $paged+$range+1 || $i < = $paged-$range-1) || $pages <= $showitems )) { echo ($paged == $i)? "<span class='current'>".$i."":"<a href='".get_pagenum_link($i)."' class='inactive' >".$i."</a>"; } } if ($paged < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($paged + 1)."'>›"; if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>»"; echo "</div>\n"; } } ?> < ?php kriesi_pagination(); ?> |
2) Kemudian tambahkan kode css berkut ini pada template style.css.
baca selanjutnya »

memuat halaman




