• I am using a PHP insertion plugin to show posts in a certain category on a certain page.
    I have the page with some blurb about the category and it then shows the last 3 blog post from that category underneath.

    What I want is the pagination links to appear at the bottom of the page because that is where people will be after scrolling through the posts. Unfortunately they appear at the top before the posts.

    There is an extra empty section showing at the bottom of the page. Maybe this has to do with the generatepress theme option for making sections?

    Hmm, tried to put in a link and it does not show? Here it is without the a ref: theonetruevlad.co.uk/music/peach-beach

    $page = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("cat=33&showposts=3&paged=$page");
    posts_nav_link();
  • The topic ‘insert php nav links location’ is closed to new replies.