📜  learndash 编辑个人资料链接 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:03.950000             🧑  作者: Mango

代码示例1
// On your child theme functions.php:
add_filter( 'get_edit_user_link', function( $link, $user_id ) {
    $link = "https://www.google.com/";
    return $link;
}, 30, 2 );