只需使用\'template_redirect \' 钩
在WordPress确定要加载哪个模板页面之前,这个操作挂钩就会执行。如果您需要在完全了解所查询内容的情况下进行重定向,那么这是一个很好的挂钩。
add_action(\'template_redirect\',\'redirect_all_pages_to_home\');
function redirect_all_pages_to_home() {
if ( ! is_front_page() ) {
wp_redirect( get_home_url() );
exit;
}
}