From 55ce914fbc09fc4aa2def2ffe453ff98f3aa7e1e Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 14 May 2009 06:38:34 +0000 Subject: [PATCH] Add a permalink_structure_changed action to allow plugins to do something once the new structure has been applied to WP_Rewrite. git-svn-id: http://svn.automattic.com/wordpress/trunk@11325 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rewrite.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-includes/rewrite.php b/wp-includes/rewrite.php index 23e1bac0f..fe5b4ad47 100644 --- a/wp-includes/rewrite.php +++ b/wp-includes/rewrite.php @@ -1840,6 +1840,9 @@ class WP_Rewrite { * Will update the 'permalink_structure' option, if there is a difference * between the current permalink structure and the parameter value. Calls * {@link WP_Rewrite::init()} after the option is updated. + * + * Fires the 'permalink_structure_changed' action once the init call has + * processed passing the old and new values * * @since 1.5.0 * @access public @@ -1850,6 +1853,7 @@ class WP_Rewrite { if ($permalink_structure != $this->permalink_structure) { update_option('permalink_structure', $permalink_structure); $this->init(); + do_action('permalink_structure_changed', $this->permalink_structure, $permalink_structure); } }