Aug 2, 2013

Wordpress: Page permalink without page number, when showing paged posts

If you need to get the page permalink and you don't want to have /page/2 or whatever on your URL, you can use this function
                    global $post;
                    $theurl  = get_permalink( $post->ID );
Cheers.