在文件中wp-login.php
我们可以在第586行看到以下内容:
/**
* Fires before the lost password form.
*
* @since 1.5.1
* @since 5.1.0 Added the `$errors` parameter.
*
* @param WP_Error $errors A `WP_Error` object containing any errors generated by using invalid
* credentials. Note that the error object may not contain any errors.
*/
do_action( \'lost_password\', $errors );
在631行,我们有:
/**
* Fires inside the lostpassword form tags, before the hidden fields.
*
* @since 2.1.0
*/
do_action( \'lostpassword_form\' );
这意味着我们可以让表单保持原样(参与更新),并使用动作挂钩对其进行扩展。
例如:
add_action( \'lostpassword_form\', \'my_function_to_add_logo\' ) );
根据布局的其他一切都可以通过css完成。