开发者

wordpress how can i get the title of the previous or next page?

开发者 https://www.devze.com 2023-03-10 23:44 出处:网络
How can I get the title of the previous page with get_t开发者_开发问答he_title with wordpress?

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;
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号