将 https://dashboard-custom-link 和 https://profile-custom-link 替换为您自己的自定义链接
代码: 全选
add_filter( 'TieLabs/Login/links', 'theme_custom_login_links' );
function theme_custom_login_links( $links ) {
if( current_user_can( 'manage_options' ) ){
$links['dashboard']['link'] = 'https://dashboard-custom-link';
}
$links['profile']['link'] = 'https://profile-custom-link';
return $links;
}