wordpress how can i get the title of the previous or next page?
How can I get the title of the previous page with get_t开发者_开发问答he_title with wordpress?
Thanks,
Sat
I think you want get_next_post() and get_prev_post()
See function reference page for complete list.
This is how I get my previous page title:
$prev_url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
$str = file_get_contents($prev_url);
$str = trim(preg_replace('/\s+/', ' ', $str));
preg_match("/\<title\>(.*)\<\/title\>/i",$str,$title);
$prev_page_title = $title[1];
echo $prev_page_title;
精彩评论