1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Article Pages Navigation Plugin

Discussion in 'WordPress' started by sa_ill, Jul 11, 2013.

  1. #1
    Hi
    Our website has many articles with 8-10 pages. For quite some time I've been looking for a good article pages navigation plugin, but to no success.
    I'm looking for something like this:
    Capture.PNG

    Here, we can see all the pages in the article, along with the Previous PAge and Next page buttons.

    Any plugin on Wordpress that will help me getting close to this?
     
    sa_ill, Jul 11, 2013 IP
  2. themes4all

    themes4all Well-Known Member

    Messages:
    662
    Likes Received:
    47
    Best Answers:
    6
    Trophy Points:
    100
    #2
    For a plugin i don't know... but you can use this Code to list Your pages :

    
    <?php
    $thispage = $wp_query->post;
    if($thispage->post_parent!=0)
    {
    wp_list_pages("title_li=&child_of=".$thispage->post_parent);
    }
    else
    {
    wp_list_pages("title_li=&child_of=".$thispage->ID);
    }
    ?>
    
    Code (markup):
    If you want to Style much more your Pages Navigation menu, you can check this tutorial : Link

    Goodluck
     
    themes4all, Jul 11, 2013 IP
    ryan_uk likes this.
  3. sa_ill

    sa_ill Greenhorn

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #3
    Thanks for your effort, I want to use this with an article.
    What I mean is, consider this hypothetical situation.
    Say I have an called "Top 10 Websites"
    And within that article, I have 10 pages. I want a navigation menu within the article.
    To best illustrate this, here is a link. If you scroll to the bottom of the page, you'll see a navigation menu for the pages in the article:
    http://techreport.com/review/24832/nvidia-geforce-gtx-780-graphics-card-reviewed
     
    sa_ill, Jul 11, 2013 IP
  4. themes4all

    themes4all Well-Known Member

    Messages:
    662
    Likes Received:
    47
    Best Answers:
    6
    Trophy Points:
    100
    #4
    ok, so on this website, they use a script like the Related POSTS.. but they style it to look this way... Page 1 Page 2...etc they list a POSTS Not Pages... You can do the same if you use a Related Posts Function : Check this Link

    then you will have to customize the Navigation style just like this one...

    Goodluck
     
    themes4all, Jul 11, 2013 IP
  5. sa_ill

    sa_ill Greenhorn

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #5
    I've tried these. Cant achieve what I want to. I can manage links, Previous and Next Page buttons. But not the navigation menu.
     
    sa_ill, Jul 13, 2013 IP