Answers for "learndash edit profile link"

PHP
0

learndash edit profile link

// 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 );
Posted by: Guest on July-19-2021

Browse Popular Code Answers by Language