WordPress 7.0 is out â the first big release of 2026 â and it brings a number of editor, admin, AI, and developer updates designed to speed workflows and modernize the dashboard. Below is a concise rundown of the most important changes and how theyâll affect sites of all sizes.
AI Connectors: central AI integration
– New Settings » Connectors screen lets you install and authenticate AI providers once for the whole site. At launch: OpenAI (ChatGPT), Google (Gemini), and Anthropic (Claude).
– Once a connector is enabled, any plugin or theme that uses the WordPress AI API can use that provider without requiring individual API keys.
– Connectors store credentials securely and standardize communication between WordPress and AI services.
– Pro tip: disable all LLM-related features site-wide by adding define( ‘WP_AI_SUPPORT’, false ); to wp-config.php.
– Note: real-time collaboration (RTC) was pulled before release and remains available for testing in the Gutenberg plugin.
Refreshed admin experience and Command Palette everywhere
– The admin UI has updated colors, cleaner typography, and smoother transitions that reduce full-page reloads. Navigation feels more like a modern web app.
– The Command Palette (press âK on Mac or Ctrl+K on Windows/Linux) is now available from anywhere in the admin for fast keyboard-driven navigation and actions. Itâs optional but great for power users.
Responsive block visibility by device
– You can now show or hide any block by device (desktop, tablet, mobile) from the block toolbar or inspector â no custom CSS required.
– Blocks with visibility rules show a device icon in List View and are accessible via the Command Palette. You can also apply different styles per breakpoint and customize breakpoints.
Smarter visual revisions
– Revisions now offer side-by-side visual diffs with color-coded outlines (green added blocks/text, red removed blocks/text, yellow modified settings) and a sidebar listing changed block attributes. This makes reviewing and restoring previous versions much clearer, especially for multi-author sites.
Custom CSS for individual blocks
– A per-block Custom CSS field appears in the Advanced panel of the block inspector. CSS entered here applies only to that block instance and renders live in the editor.
– Only users with the edit_css capability (typically Administrators and Editors) will see the field. The CSS is stored inside the block so it travels with it; block authors can opt out via block.json.
New native blocks: Icons, Breadcrumbs, Headings
– Icons block: insert and style SVG icons from the WordPress icon library (resize, recolor, spacing). Official custom icon set registration is planned for 7.1; third-party libraries like Font Awesome are not bundled.
– Breadcrumbs block: generate breadcrumb trails for posts, pages, and custom post type templates without a plugin. Developers can customize output via new filters.
– Headings block: combines H1âH6 into one block with easy level switching in the inspector, encouraging better heading structure and accessibility.
Customizable navigation overlays
– Mobile menu overlays in the Navigation block are no longer experimental. A âCreate overlayâ option guides you through building mobile overlay menus, and theme authors can register a navigation-overlay template part.
Pattern editing improvements
– Block patterns default to content-only editing mode (isolate mode), showing a simplified interface for swapping text and images without exposing all style controls. Advanced users can re-enable full editing with a filter.
Gallery lightbox navigation
– Gallery lightbox gets back/next controls and arrow-key navigation for easier browsing. Images that have the lightbox disabled individually are skipped.
Developer and tooling improvements (under the hood)
– Pseudo-element support in theme.json: style :hover, :focus, :focus-visible, and :active states within theme.json for blocks and variations.
– PHP-only block registration: register basic blocks using only PHP (no JavaScript required) for simpler server-side blocks.
– Block Selectors API: blocks can declare selectors.css in block.json to control which CSS selector Global Styles target.
– Font Library: now has a dedicated dashboard page and works across block, hybrid, and classic themes for centralized font management.
– WP-CLI 3.0: ships with new command sets, including wp block (read-only block access) and wp ability for the AI Abilities API.
– wp-env: phpMyAdmin is now supported on the Playground runtime by toggling “phpmyadmin”: true in .wp-env.json.
– OPCache info appears in Site Health (Tools » Site Health » Info » Server) to help diagnose PHP opcode caching issues.
– Iframed editor: posts with only Block API v3+ blocks now use an iframe layout to improve stability and performance; older blocks bypass it.
– More secure default roles: Administrator and Editor were removed from the default role selector to avoid accidentally granting high privileges to new users. Site Health flags prior settings.
– PHP requirement: minimum PHP 7.4, but PHP 8.3 or 8.4 is strongly recommended for best performance and security.
Miscellaneous enhancements
– Cover blocks can use video by URL as a background.
– Text alignment was standardized across more post-related blocks.
– The Interactivity API added a watch() helper for side-effect patterns in interactive blocks.
– DataViews and DataForm packages received updates (new layouts, validation, grouping); developers should review breaking changes.
– Client-Side Media Processing preview was moved out of core and is available as a standalone plugin for further development.
Final notes and upgrade advice
– WordPress 7.0 focuses on making the editor more powerful and the admin experience smoother while laying groundwork for standardized AI integration.
– If you plan to upgrade, back up your site first and consider testing on a staging environment for mission-critical sites. Explore the Connectors screen, visual revisions, and per-block CSS â theyâre easy to miss but highly useful.
– Follow plugin and theme developersâ guidance for any required updates (block API versions, PHP compatibility).