Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: 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
120      $id = (int) $id;
121      if ( !$id )
122           $id = (int) $post->ID;
123
124      if ( 'page' == get_option('show_on_front') && $id == get_option('page_on_front') )
125           $link = get_option('home');
126      else
127           $link = _get_page_link( $id );
128
129      return apply_filters('page_link', $link, $id);
130 }
131
132 // Ignores page_on_front.  Internal use only.
133 function _get_page_link( $id = false ) {
134      global $post, $wp_rewrite;
135
136      if ( !$id )
137           $id = (int) $post->ID;
138