previous_post_link and next_post_link filters. Props JohnLamansky. fixes #6985 for 2.5

git-svn-id: http://svn.automattic.com/wordpress/branches/2.5@8109 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-06-16 22:27:20 +00:00
parent b8268f297b
commit 78fd595375
1 changed files with 2 additions and 1 deletions

View File

@ -599,7 +599,8 @@ function adjacent_post_link($format, $link, $in_same_cat = false, $excluded_cate
$format = str_replace('%link', $link, $format);
echo $format;
$adjacent = $previous ? 'previous' : 'next';
echo apply_filters( "{$adjacent}_post_link", $format, $link );
}
function get_pagenum_link($pagenum = 1) {