我正在尝试将我的 WordPress 主页自动重定向到最新文章。目前我使用 Spencer Cameron 建议的重定向
function redirect_homepage() {
if( ! is_home() && ! is_front_page() )
return;
wp_redirect( 'http://homepage.com/article1', 301 );
exit;
}
add_action( 'template_redirect', 'redirect_homepage' );
现在,如果我发布第 2 篇文章,我希望主页自动连接到第 2 篇文章,而无需我调整 functions.php。
我不希望用户看到www.example.com
但只有文章,因此在访问页面时总是会重定向到最新文章。
但是:即使已经
有.www.example.com/article1
www.example.com/article2
我怎样才能实现这个目标?