Skip to content
WJunction - Webmaster Forum

Need page navigator for my wordpress site. Tried some, but failed.

Status
Not open for further replies.
I have WordPress theme: Kippis 1.15
I dont want « Older posts, Newer posts »
I have installed wp-pagenavi, gd-page navigator, but did not get the numbered page navigation.
Still showing « Older posts, Newer posts ».
How to get the numbered page navigation?
I need pagenavigation on TOP aswellas Bottom.

Thank you.
 

1 comment

You will need to edit some theme files for that to work, like the index.php, archive.php etc.
In your theme files replace
Code:
<?php kippis_content_nav('nav-below'); ?>

with
Code:
[COLOR=black][FONT=Consolas]<?php[/FONT][/COLOR][COLOR=#404040][FONT=Consolas]global $wp_query;[/FONT][/COLOR]

[COLOR=#404040][FONT=Consolas]$big = 999999999; // need an unlikely integer[/FONT][/COLOR]

[COLOR=#404040][FONT=Consolas]echo paginate_links( array([/FONT][/COLOR]
[COLOR=#404040][FONT=Consolas]  'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),[/FONT][/COLOR]
[COLOR=#404040][FONT=Consolas]  'format' => '?paged=%#%',[/FONT][/COLOR]
[COLOR=#404040][FONT=Consolas]  'current' => max( 1, get_query_var('paged') ),[/FONT][/COLOR]
[COLOR=#404040][FONT=Consolas]  'total' => $wp_query->max_num_pages[/FONT][/COLOR]
[COLOR=#404040][FONT=Consolas]) );[/FONT][/COLOR]
[COLOR=black][FONT=Consolas]?>[/FONT][/COLOR]

Here is a tutorial on the pagination.
But i advise you to search for a new theme, the one you mentioned was not updated since 2012-08-20.
 
Last edited:
Status
Not open for further replies.

About the author

xfactormaster
Active Member · Joined
DesiUnseen/forum DesiUnseen/forum
202
Messages
18
Reactions
18
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom