Welcome, visitor! Log in
 

Source View: wp_link_pages_args

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

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
568      $defaults = array(
569           'before' => '<p>' . __('Pages:'), 'after' => '</p>',
570           'link_before' => '', 'link_after' => '',
571           'next_or_number' => 'number', 'nextpagelink' => __('Next page'),
572           'previouspagelink' => __('Previous page'), 'pagelink' => '%',
573           'echo' => 1
574      );
575
576      $r = wp_parse_args( $args, $defaults );
577      $r = apply_filters( 'wp_link_pages_args', $r );
578      extract( $r, EXTR_SKIP );
579
580      global $post, $page, $numpages, $multipage, $more, $pagenow;
581
582      $output = '';
583      if ( $multipage ) {
584           if ( 'number' == $next_or_number ) {
585                $output .= $before;
586                for ( $i = 1; $i < ($numpages+1); $i = $i + 1 ) {