From 68606d301ed6f71e53abe34cda9e22f53da60d4b Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 25 Feb 2008 18:40:46 +0000 Subject: [PATCH] get_pagenum_link filter from Martin2006. fixes #5969 git-svn-id: http://svn.automattic.com/wordpress/trunk@7022 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 65f8cc1f7..3c387d947 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -641,6 +641,8 @@ function get_pagenum_link($pagenum = 1) { $result = $base . $request . $query_string; } + $result = apply_filters('get_pagenum_link', $result); + return $result; }