Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: paginate_links

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

This hook occurs 3 times in this file.

Line Code
2018      $n = 0;
2019      $dots = false;
2020
2021      if ( $prev_next && $current && 1 < $current ) :
2022           $link = str_replace('%_%', 2 == $current ? '' : $format, $base);
2023           $link = str_replace('%#%', $current - 1, $link);
2024           if ( $add_args )
2025                $link = add_query_arg( $add_args, $link );
2026           $link .= $add_fragment;
2027           $page_links[] = '<a class="prev page-numbers" href="' . esc_url( apply_filters( 'paginate_links', $link ) ) . '">' . $prev_text . '</a>';
2028      endif;
2029      for ( $n = 1; $n <= $total; $n++ ) :
2030           $n_display = number_format_i18n($n);
2031           if ( $n == $current ) :
2032                $page_links[] = "<span class='page-numbers current'>$n_display</span>";
2033                $dots = true;
2034           else :
2035                if ( $show_all || ( $n <= $end_size || ( $current && $n >= $current - $mid_size && $n <= $current + $mid_size ) || $n > $total - $end_size ) ) :
2036                     $link = str_replace('%_%', 1 == $n ? '' : $format, $base);
2037                     $link = str_replace('%#%', $n, $link);
2038                     if ( $add_args )
2039                          $link = add_query_arg( $add_args, $link );
2040                     $link .= $add_fragment;
2041                     $page_links[] = "<a class='page-numbers' href='" . esc_url( apply_filters( 'paginate_links', $link ) ) . "'>$n_display</a>";
2042                     $dots = true;
2043                elseif ( $dots && !$show_all ) :
2044                     $page_links[] = '<span class="page-numbers dots">' . __( '&hellip;' ) . '</span>';
2045                     $dots = false;
2046                endif;
2047           endif;
2048      endfor;
2049      if ( $prev_next && $current && ( $current < $total || -1 == $total ) ) :
2050           $link = str_replace('%_%', $format, $base);
2051           $link = str_replace('%#%', $current + 1, $link);
2052           if ( $add_args )
2053                $link = add_query_arg( $add_args, $link );
2054           $link .= $add_fragment;
2055           $page_links[] = '<a class="next page-numbers" href="' . esc_url( apply_filters( 'paginate_links', $link ) ) . '">' . $next_text . '</a>';
2056      endif;
2057      switch ( $type ) :
2058           case 'array' :
2059                return $page_links;
2060                break;
2061           case 'list' :
2062                $r .= "<ul class='page-numbers'>\n\t<li>";
2063                $r .= join("</li>\n\t<li>", $page_links);
2064                $r .= "</li>\n</ul>\n";