mirror of
https://github.com/WordPress/WordPress.git
synced 2025-04-03 10:35:47 +02:00
Improve cleanup of cached term_ids after shared terms are split.
* If the split term ID is stored as 'default_category', 'default_link_category', or 'default_email_category', update it to the new ID. * If the split term ID is associated with a nav menu item, update that piece of postmeta to the new ID. Props mboynes. See #30335. Built from https://develop.svn.wordpress.org/trunk@30494 git-svn-id: http://core.svn.wordpress.org/trunk@30483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
14e6c301ea
commit
57e358da63
@ -306,4 +306,8 @@ add_filter( 'authenticate', 'wp_authenticate_spam_check', 99 );
|
||||
add_filter( 'determine_current_user', 'wp_validate_auth_cookie' );
|
||||
add_filter( 'determine_current_user', 'wp_validate_logged_in_cookie', 20 );
|
||||
|
||||
// Split term updates
|
||||
add_filter( 'split_shared_term', '_wp_check_split_default_terms', 10, 4 );
|
||||
add_filter( 'split_shared_term', '_wp_check_split_terms_in_menus', 10, 4 );
|
||||
|
||||
unset($filter, $action);
|
||||
|
@ -4135,6 +4135,61 @@ function _split_shared_term( $term_id, $term_taxonomy_id ) {
|
||||
return $new_term_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check default categories when a term gets split to see if any of them need
|
||||
* to be updated.
|
||||
*
|
||||
* @since 4.1.0
|
||||
* @access private
|
||||
*
|
||||
* @param int $term_id ID of the formerly shared term.
|
||||
* @param int $new_term_id ID of the new term created for the $term_taxonomy_id.
|
||||
* @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split.
|
||||
* @param string $taxonomy Taxonomy for the split term.
|
||||
*/
|
||||
function _wp_check_split_default_terms( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
|
||||
if ( 'category' == $taxonomy ) {
|
||||
foreach ( array( 'default_category', 'default_link_category', 'default_email_category' ) as $option ) {
|
||||
if ( $term_id == get_option( $option, -1 ) ) {
|
||||
update_option( $option, $new_term_id );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check menu items when a term gets split to see if any of them need to be
|
||||
* updated.
|
||||
*
|
||||
* @since 4.1.0
|
||||
* @access private
|
||||
*
|
||||
* @param int $term_id ID of the formerly shared term.
|
||||
* @param int $new_term_id ID of the new term created for the $term_taxonomy_id.
|
||||
* @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split.
|
||||
* @param string $taxonomy Taxonomy for the split term.
|
||||
*/
|
||||
function _wp_check_split_terms_in_menus( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
|
||||
global $wpdb;
|
||||
$post_ids = $wpdb->get_col( $wpdb->prepare(
|
||||
"SELECT m1.post_id
|
||||
FROM {$wpdb->postmeta} AS m1
|
||||
INNER JOIN {$wpdb->postmeta} AS m2 ON m2.post_id=m1.post_id
|
||||
INNER JOIN {$wpdb->postmeta} AS m3 ON m3.post_id=m1.post_id
|
||||
WHERE ( m1.meta_key = '_menu_item_type' AND m1.meta_value = 'taxonomy' )
|
||||
AND ( m2.meta_key = '_menu_item_object' AND m2.meta_value = '%s' )
|
||||
AND ( m3.meta_key = '_menu_item_object_id' AND m3.meta_value = %d )",
|
||||
$taxonomy,
|
||||
$term_id
|
||||
) );
|
||||
|
||||
if ( $post_ids ) {
|
||||
foreach ( $post_ids as $post_id ) {
|
||||
update_post_meta( $post_id, '_menu_item_object_id', $new_term_id, $term_id );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate a permalink for a taxonomy term archive.
|
||||
*
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.1-beta2-30493';
|
||||
$wp_version = '4.1-beta2-30494';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user