Ticket #10203: link-template-10203-1.diff
File link-template-10203-1.diff, 518 bytes (added by , 10 years ago) |
---|
-
wp-includes/link-template.php
2217 2217 * @param string $nxtlabel Optional Label for next pages. 2218 2218 */ 2219 2219 function posts_nav_link( $sep = '', $prelabel = '', $nxtlabel = '' ) { 2220 $args = array_filter( compact('sep', 'prelabel', 'nxtlabel'));2220 $args = compact('sep', 'prelabel', 'nxtlabel'); 2221 2221 echo get_posts_nav_link($args); 2222 2222 } 2223 2223