Changeset 8502
- Timestamp:
- 07/30/2008 07:01:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r8487 r8502 697 697 echo '<a href="'; 698 698 next_posts($max_page); 699 echo '">'. preg_replace('/&([^#])(?![a-z]{1,8};)/', '&$1', $label) .'</a>'; 699 $attr = apply_filters( 'next_posts_link_attributes', '' ); 700 echo "\" $attr>". preg_replace('/&([^#])(?![a-z]{1,8};)/', '&$1', $label) .'</a>'; 700 701 } 701 702 } … … 721 722 echo '<a href="'; 722 723 previous_posts(); 723 echo '">'. preg_replace('/&([^#])(?![a-z]{1,8};)/', '&$1', $label) .'</a>'; 724 $attr = apply_filters( 'previous_posts_link_attributes', '' ); 725 echo "\" $attr>". preg_replace('/&([^#])(?![a-z]{1,8};)/', '&$1', $label) .'</a>'; 724 726 } 725 727 }
Note: See TracChangeset
for help on using the changeset viewer.