mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Taxonomy: Rename the default_taxonomy_$taxonomy option key to default_term_$taxonomy.
This better reflects the purpose of the option. Follow-up to [48356], [48480]. See #43517. git-svn-id: https://develop.svn.wordpress.org/trunk@48665 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -541,7 +541,7 @@ function map_meta_cap( $cap, $user_id, ...$args ) {
|
||||
|
||||
if ( 'delete_term' === $cap
|
||||
&& ( get_option( 'default_' . $term->taxonomy ) == $term->term_id
|
||||
|| get_option( 'default_taxonomy_' . $term->taxonomy ) == $term->term_id )
|
||||
|| get_option( 'default_term_' . $term->taxonomy ) == $term->term_id )
|
||||
) {
|
||||
$caps[] = 'do_not_allow';
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user