コード例 #1
0
ファイル: views-login.php プロジェクト: kalushta/darom
 function __construct($template)
 {
     parent::__construct($template, __('Register', APP_TD));
     add_action('appthemes_after_registration', 'wp_new_user_notification', 10, 2);
 }
コード例 #2
0
 function __construct($template)
 {
     parent::__construct($template, __('Register', APP_TD), array('internal_use_only' => true));
     add_action('appthemes_after_registration', 'wp_new_user_notification', 10, 2);
     add_filter('register_url', array($this, '_change_register_url'), 10, 1);
 }
コード例 #3
0
ファイル: views-login.php プロジェクト: kalushta/darom
 function __construct($template)
 {
     self::$_template = $template;
     parent::__construct($template, __('Register', APP_TD));
     add_action('appthemes_after_registration', 'wp_new_user_notification', 10, 2);
     add_filter('register_url', array($this, '_change_register_url'), 10, 1);
 }