Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_profile_url

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3204       * Filter the URL for a user's profile editor.
3205       *
3206       * @since 3.1.0
3207       *
3208       * @param string $url     The complete URL including scheme and path.
3209       * @param int    $user_id The user ID.
3210       * @param string $scheme  Scheme to give the URL context. Accepts 'http', 'https', 'login',
3211       *                        'login_post', 'admin', 'relative' or null.
3212       */
3213      return apply_filters( 'edit_profile_url', $url, $user_id, $scheme);
3214 }
3215
3216 /**
3217  * Output rel=canonical for singular queries.
3218  *
3219  * @since 2.9.0
3220 */
3221 function rel_canonical() {
3222      if ( !is_singular() )