Don't flush rules for every post imported. see #7193

git-svn-id: http://svn.automattic.com/wordpress/trunk@9101 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-10-08 22:16:35 +00:00
parent 65660bd565
commit da50360c41
2 changed files with 9 additions and 2 deletions

View File

@ -120,6 +120,10 @@ if (isset($plugin_page)) {
include(ABSPATH . 'wp-admin/admin-footer.php');
// Make sure rules are flushed
global $wp_rewrite;
$wp_rewrite->flush_rules();
exit();
} else {
do_action("load-$pagenow");

View File

@ -3112,8 +3112,11 @@ function _publish_post_hook($post_id) {
function _save_post_hook($post_id, $post) {
if ( $post->post_type == 'page' ) {
clean_page_cache($post_id);
global $wp_rewrite;
$wp_rewrite->flush_rules();
// Avoid flushing rules for every post during import.
if ( !defined('WP_IMPORTING') ) {
global $wp_rewrite;
$wp_rewrite->flush_rules();
}
} else {
clean_post_cache($post_id);
}