Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In wordpress next_posts_link(); returns http://currenturl.com/currentpage**/page/x/**. What could I add in functions.php to return http://baseurl.com/page/x/ in all cases, so an absolute URL without just adding /page/x/ to the current page.

Thanks for your ideas guys!

share|improve this question

2 Answers

up vote 0 down vote accepted

Regex is your friend:

$test = 'http://example.com/test';
$test = preg_replace('/^http:\/\/.*?(\/.*)/', "http://baseurl.com$1", $test);
echo $test;

Adjust to suit your needs. It might be worthwhile defining your base url as a constant and encapsulating this functionality in a function.

share|improve this answer
$url = 'http://' . $_SERVER['SERVER_NAME'] . next_posts_link();

Output: http://baseurl.com/page/x/

share|improve this answer
sorry, I havn't been clear enough. next_posts_link() return THECURRENTURL.com/page/x so that is not an option :( – SnippetSpace Sep 20 '12 at 23:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.