Changeset 60933 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 10/15/2025 12:40:07 AM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/taxonomy.php (modified) (1 diff)
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.