$pageNumberContainingPostId = ???
wp_redirect( get_bloginfo('url')
. '/page/'
. $pageNumberContainingPostId );
Is this possible?
In english, to be able to redirect wordpress to a page that contains say post_ID=50
Thanks in advance
$pageNumberContainingPostId = ???
wp_redirect( get_bloginfo('url')
. '/page/'
. $pageNumberContainingPostId );
Is this possible?
In english, to be able to redirect wordpress to a page that contains say post_ID=50
Thanks in advance
The page a blog post is on changes as the number of posts does, so in short, no it wouldn't be possible, since the page number is not static.
This topic has been closed to new replies.