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.

Change Edit Your Profile Url in WordPress
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.

Sharing Is Caring:

Kaka MEO is a skilled blogger and content writer specializing in making money and education topics. He crafts engaging content that informs and empowers readers to achieve financial and educational success.

Leave a Comment