【问题标题】:How to force redirect for a new account in Wordpress?如何在 Wordpress 中强制重定向新帐户?
【发布时间】:2012-06-24 23:02:45
【问题描述】:

我想在创建新帐户时在特殊页面上强制重定向,但它不起作用。它总是重定向到 WP 仪表板。

function redirect_testtt($user_id) {
  wp_redirect('http://www.example.com/me');
  exit;
}
add_action('user_register', 'redirect_testtt');

请问如何强制重定向新帐户?

【问题讨论】:

    标签: wordpress login registration


    【解决方案1】:

    试试:

    // add action to after registration hook
    add_action('user_register','after_reg');
    
    // redirect users after registration
    function after_reg() {
         wp_redirect('http://google.com');
         exit();
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多