Changeset 9097 for trunk/wp-includes/general-template.php
- Timestamp:
- 10/07/2008 10:41:51 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r9025 r9097 1634 1634 'mid_size' => 2, 1635 1635 'type' => 'plain', 1636 'add_args' => false // array of query args to add 1636 'add_args' => false, // array of query args to add 1637 'add_fragment' => '' 1637 1638 ); 1638 1639 … … 1658 1659 if ( $add_args ) 1659 1660 $link = add_query_arg( $add_args, $link ); 1661 $link .= $add_fragment; 1660 1662 $page_links[] = "<a class='prev page-numbers' href='" . clean_url($link) . "'>$prev_text</a>"; 1661 1663 endif; … … 1670 1672 if ( $add_args ) 1671 1673 $link = add_query_arg( $add_args, $link ); 1674 $link .= $add_fragment; 1672 1675 $page_links[] = "<a class='page-numbers' href='" . clean_url($link) . "'>$n</a>"; 1673 1676 $dots = true; … … 1683 1686 if ( $add_args ) 1684 1687 $link = add_query_arg( $add_args, $link ); 1688 $link .= $add_fragment; 1685 1689 $page_links[] = "<a class='next page-numbers' href='" . clean_url($link) . "'>$next_text</a>"; 1686 1690 endif;
Note: See TracChangeset
for help on using the changeset viewer.