Same posts within a paginated page

The problem is that you are running query_posts in the middle of the page, which, by the way you should nearly never do. That will overwrite the main query– the global $wp_query object. Pagination should probably appear to work. The problem is that the original main query runs before your template loads and thus before … Read more

Link to page in category

After a long search on the Web, I decided to take a look at the plugins @anjum sent, and found out this can be done through: <a href=”https://wordpress.stackexchange.com/questions/110906/<?php get_pagenum_link($i); ?>”>Link to page $i</a>

how to apply Pagination on post

A siple search on google got me to these websites: http://codex.wordpress.org/Function_Reference/paginate_links https://codex.wordpress.org/Pagination These are WordPress Tutorials for setting pagination. You can also install a plugin, I recommend WP PageNavi. http://wordpress.org/plugins/wp-pagenavi/