前言
此筛选器允许修改“忘记密码”页的重定向页面 ID。参数:返回值:
用法
将代码加入子主题的 functions.php:
add_filter( 'bricks/auth/custom_lost_password_redirect', function( $selected_lost_password_page_id ) {
return /* New lost password page ID */;
});
示例代码
筛选返回值
add_filter( 'bricks/auth/custom_lost_password_redirect', function( $selected_lost_password_page_id ) {
return /* New lost password page ID */;
});
补充说明
更多细节可参考 官方文档。