Make WordPress Core

Ticket #43517: 43517.5.patch

File 43517.5.patch, 2.6 KB (added by enrico.sorcinelli, 4 years ago)
  • src/wp-includes/taxonomy.php

    diff --git src/wp-includes/taxonomy.php src/wp-includes/taxonomy.php
    index e0acadcf87..31558d9898 100644
    function unregister_taxonomy( $taxonomy ) { 
    506506        $taxonomy_object->remove_rewrite_rules();
    507507        $taxonomy_object->remove_hooks();
    508508
     509        // Remove custom taxonomy default term option.
     510        if ( ! empty( $taxonomy_object->default_term ) ) {
     511                delete_option( 'default_taxonomy_' . $taxonomy_object->name );
     512        }
     513
    509514        // Remove the taxonomy.
    510515        unset( $wp_taxonomies[ $taxonomy ] );
    511516
    function wp_delete_term( $term, $taxonomy, $args = array() ) { 
    18241829                }
    18251830        }
    18261831
     1832        // Don't delete the default custom taxonomy term.
     1833        $taxonomy_object = get_taxonomy( $taxonomy );
     1834        if ( ! empty( $taxonomy_object->default_term ) ) {
     1835                $defaults['default'] = (int) get_option( 'default_taxonomy_' . $taxonomy );
     1836                if ( $defaults['default'] === $term ) {
     1837                        return 0;
     1838                }
     1839        }
     1840
    18271841        $args = wp_parse_args( $args, $defaults );
    18281842
    18291843        if ( isset( $args['default'] ) ) {
    function wp_set_object_terms( $object_id, $terms, $taxonomy, $append = false ) { 
    25162530        $taxonomy_obj = get_taxonomy( $taxonomy );
    25172531
    25182532        // Default term for this taxonomy.
    2519         $default_term_id = get_option( 'default_taxonomy_' . $taxonomy );
    2520         if ( empty( $terms ) && ! empty( $taxonomy_obj->default_term ) && ! empty( $default_term_id ) ) {
    2521                 $terms[] = (int) $default_term_id;
     2533        if ( empty( $terms ) && ! empty( $taxonomy_obj->default_term ) ) {
     2534                $default_term_id = get_option( 'default_taxonomy_' . $taxonomy );
     2535                if ( ! empty( $default_term_id ) ) {
     2536                        $terms[] = (int) $default_term_id;
     2537                }
    25222538        }
    25232539
    25242540        if ( ! $append ) {
  • tests/phpunit/tests/taxonomy.php

    diff --git tests/phpunit/tests/taxonomy.php tests/phpunit/tests/taxonomy.php
    index 7a5a065be1..d2972729ca 100644
    class Tests_Taxonomy extends WP_UnitTestCase { 
    999999                        )
    10001000                );
    10011001
     1002                // Test default category.
    10021003                $term = wp_get_post_terms( $post_id, $tax );
    10031004                $this->assertSame( get_option( 'default_taxonomy_' . $tax ), $term[0]->term_id );
    10041005
     1006                // Test default term deletion.
     1007                $this->assertSame( wp_delete_term( $term[0]->term_id, $tax ), 0 );
     1008
    10051009                // Add custom post type.
    10061010                register_post_type(
    10071011                        'post-custom-tax',
    class Tests_Taxonomy extends WP_UnitTestCase { 
    10171021                );
    10181022                $term    = wp_get_post_terms( $post_id, $tax );
    10191023                $this->assertSame( get_option( 'default_taxonomy_' . $tax ), $term[0]->term_id );
     1024
     1025                unregister_taxonomy( $tax );
     1026                $this->assertSame( get_option( 'default_taxonomy_' . $tax ), false );
    10201027        }
    10211028}