1
0
mirror of https://github.com/WordPress/WordPress.git synced 2025-03-31 17:06:04 +02:00

get_pagenum_link filter from Martin2006. fixes

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

View File

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