Custom 'Edit Profile' Location in Wordpress -
what trying have edit profile option in admin bar @ top of wordpress page go url.
basically instead of going /wp-admin directory
i trying go the /editprofile.php page.
you can use filter edit_profile_url
:
add_filter( 'edit_profile_url', 'custom_profile_link_so_19216787', 10, 3 ); function custom_profile_link_so_19216787( $url, $user, $scheme ) { return site_url( 'editprofile' ); }
i suppose /editprofile.php
page using template , address example.com/editprofile
. if that's not case, put full url instead of site_url($slug)
.
Comments
Post a Comment