get_pagenum_link filter from Martin2006. fixes #5969

git-svn-id: http://svn.automattic.com/wordpress/trunk@7022 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-02-25 18:40:46 +00:00
parent 428d820978
commit 68606d301e
1 changed files with 2 additions and 0 deletions

View File

@ -641,6 +641,8 @@ function get_pagenum_link($pagenum = 1) {
$result = $base . $request . $query_string;
}
$result = apply_filters('get_pagenum_link', $result);
return $result;
}