Changeset 60933
- Timestamp:
- 10/15/2025 12:40:07 AM (2 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
-
src/wp-includes/taxonomy.php (modified) (1 diff)
-
tests/phpunit/tests/taxonomy/cleanTaxonomyCache.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r60711 r60933 3733 3733 3734 3734 // Regenerate cached hierarchy. 3735 delete_option( "{$taxonomy}_children" ); 3736 _get_term_hierarchy( $taxonomy ); 3735 if ( is_taxonomy_hierarchical( $taxonomy ) ) { 3736 delete_option( "{$taxonomy}_children" ); 3737 _get_term_hierarchy( $taxonomy ); 3738 } 3737 3739 3738 3740 /**
Note: See TracChangeset
for help on using the changeset viewer.