Change Edit Your Profile Url in WordPress

This code changes the Edit Your Profile link on single posts which is shown for logged in users under the Leave a Reply text above the comment form.

add_filter('edit_profile_url', function($url, $user_id) {
    return site_url('/custom-profile-page/');
}, 10, 2);

Swap out custom-profile-page in the code with the permalink slug to the page you want linked.

You can reset the default URL using this code.

remove_all_filters('edit_profile_url');

Copy and paste the code to the end of your child themes functions file.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *