wp-login.php?action=register sayfasını register sayfasına nasıl yönlendiririz?
1
●195
- 18-11-2018, 19:06:38
if( ! function_exists( 'kayit_yonlendir' )){ function kayit_yonlendir(){ global $pagenow; if ( ( strtolower($pagenow) == 'wp-login.php') && ( strtolower( $_GET['action']) == 'register' ) ) { wp_redirect( home_url('/register')); } } } add_action('init','kayit_yonlendir');