Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: _get_page_link

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
370
371      /**
372       * Filter the permalink for a non-page_on_front page.
373       *
374       * @since 2.1.0
375       *
376       * @param string $link    The page's permalink.
377       * @param int    $post_id The ID of the page.
378       */
379      return apply_filters( '_get_page_link', $link, $post->ID );
380 }
381
382 /**
383  * Retrieve permalink for attachment.
384  *
385  * This can be used in the WordPress Loop or outside of it.
386  *
387  * @since 2.0.0
388  *