基本上我想创建一个mysite.com/lastpost.php,重定向到网站上的最后一篇帖子。 (WordPress的)
有人可以帮我这样做吗?
谢谢!
答案 0 :(得分:0)
我会给你调试。
<?php
$last_post = get_posts( array(
'posts_per_page' => 1
) );
if ( $last_post ) wp_safe_redirect( get_permalink( $last_post[0]->ID ) );
?>