I want to limit my posts per portfolio pages to 912 but when a page fills up with previews, I would like to put navigation "buttons" at the bottom of the page to link to the other page with the overflow of previous posts. This would be similar to the tiny buttons you have at the bottom of these forum pages that link to the next topics. I have seen it done on someone's display themed blog but can not figure it out. Thought it might be a feature built-in to "display". How would I go about this?
Numbered Page Links at bottom of page
4 posts from 2 voices-
Posted 1 year ago #
-
Hey,
you can use WP Paginate: http://wordpress.org/extend/plugins/wp-paginate/ to implement pagination buttons on portfolio pages. Activate the plugin and replace following code in template_portfolio.php
kriesi_pagination($query_string);with:
if(function_exists('wp_paginate')) { wp_paginate(); }else{ kriesi_pagination($query_string); }Maybe we need to change the design/css a bit afterwards :)
Posted 1 year ago # -
Awesome! You are the best! Thanks.:)
Posted 1 year ago # -
Glad that I could help you :)
Posted 1 year ago #
Reply
You must log in to post.














