8889841cwp-content/plugins/elementor-pro/modules/notes/database/migrations/add-capabilities.php000064400000001445150434521200034014 0ustar00home/clixcotz/bimatime.clix.co.tzadd_cap( $capability ); } } } /** * @inheritDoc */ public function down() { $roles = array_values( wp_roles()->role_objects ); foreach ( $roles as $role ) { if ( ! ( $role instanceof \WP_Role ) ) { continue; } foreach ( Capabilities::all() as $cap ) { $role->remove_cap( $cap ); } } } }