From 999d760f6c8a700656b1ec498752e768eed55402 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 15 Jul 2004 23:29:41 +0000 Subject: [PATCH] Add rewrite_rules_array filter point. git-svn-id: https://develop.svn.wordpress.org/trunk@1466 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 48ed2326ac..9015186a38 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; }