如何获取我博客的最新URL? 时间:2017-04-08 作者:Himanshu Sachdeva 如何获取我博客的最新URL?意思是,如果我想创建dynamic URL 将自动重定向到我的latest (最大id)post?有什么线索吗? 1 个回复 SO网友:mmm 易于使用get_posts // search the last post $posts = get_posts([ "posts_per_page" => 1, ]); foreach ($posts as $p) { // display the permalink echo esc_html(get_permalink($p)); } 文件编制get_posts :https://codex.wordpress.org/Function_Reference/get_posts 文章导航