From 241958270d655db199d86b4c3794048304753942 Mon Sep 17 00:00:00 2001 From: rboren Date: Thu, 15 Jul 2004 23:29:41 +0000 Subject: [PATCH] Add rewrite_rules_array filter point. git-svn-id: http://svn.automattic.com/wordpress/trunk@1466 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 48ed2326a..9015186a3 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1338,6 +1338,7 @@ function rewrite_rules($matches = '', $permalink_structure = '') { $rewrite = $rewrite + $post_rewrite; + $rewrite = apply_filters('rewrite_rules_array', $rewrite); return $rewrite; }