WordPress 7.0 shipped on May 20, 2026, and I have now run it across enough client sites to tell you what actually matters and what is just release-note noise. Here is the short version: this update does not put AI on your website. It puts in the plumbing that lets other things put AI on your website. That distinction is the whole story, and it changes what you should be doing over the next few months.
If you have been quietly ignoring the update prompt in your dashboard, this one is worth ten minutes.
What actually shipped in WordPress 7.0
The release, codenamed Armstrong, was originally targeted for April to line up with WordCamp Asia. Leadership pushed it back roughly six weeks to stabilize the AI infrastructure and finish the admin redesign. What landed on May 20:
The AI Client, a provider-agnostic PHP interface built into core
The Abilities API, a central registry of named actions your site can expose
A Connectors hub in wp-admin where you authenticate outside AI providers
An optional official AI plugin for generating titles, excerpts, alt text, and images
The first real visual refresh of wp-admin in over a decade, including a Command Palette
PHP-only blocks, so developers can ship blocks without touching React
A minimum PHP bump to 7.4, dropping support for 7.2 and 7.3
Notice what is not on that list: a chatbot, an AI writer in your editor, or anything that starts generating content the moment you hit update. Core shipped the wiring, not the appliance.
The AI Client, explained without the jargon
Before 7.0, every AI plugin rolled its own connection to OpenAI or Claude or whoever else. Each one wanted its own API key, stored it in its own settings page, and broke in its own creative fashion when a provider changed an endpoint. Three AI plugins meant three integrations to maintain and three places for a key to leak.
The AI Client replaces that with one standardized interface in core. A plugin sends a prompt through it and gets a response back in a predictable format, regardless of which model is on the other end. You authenticate providers once in the Connectors hub, and plugins request access through core rather than hoarding credentials.
For you as a site owner, the wins are simple. Fewer places to store API keys, fewer plugins doing sketchy things with your credentials, and the ability to swap model providers without rebuilding every AI feature on the site. That last one matters more than people realize, because AI pricing keeps moving and vendor lock-in is how you end up overpaying.
The Abilities API is the part that actually matters
If the AI Client is the wire, the Abilities API is the outlet. It is a registry where plugins, themes, and core itself declare named actions along with input rules, output rules, and permission checks. Things like create_order, list_products, get_inventory, or schedule_post.
Here is why that beats the AI writing features everyone is talking about. Once your site publishes a structured list of what it can do and who is allowed to do it, an AI tool can operate your website instead of just writing text for it. A support assistant that genuinely looks up an order status. A tool that checks live inventory before answering.
WordPress.com has already expanded its AI agent from read-only access to actual write actions, and the guardrails they built are the model everyone should follow: changes need explicit approval, new posts default to drafts, deletions stay reversible where possible, activity shows in the site log, permissions follow existing WordPress user roles, and every operation can be switched on or off individually.
Take that list and treat it as your checklist. Any AI plugin that wants write access to your site and does not offer approval gates, role-based permissions, and an audit log has no business being installed on a site that makes you money.
The admin redesign you will notice on day one
The dashboard got its first serious visual overhaul in more than ten years. The static list tables you have stared at since WordPress 3.x are replaced by React-based DataViews. There is a proper font management page, visual revision scrubbing, and a Command Palette you open with Cmd+K.
The Command Palette is the sleeper feature. Instead of hunting through menus to reach a settings page or jump to a specific post, you hit Cmd+K and type. If you manage a lot of sites, it changes how fast you move.
Fair warning though. A redesigned admin means your staff and your clients open the dashboard and find things moved. If you hand off site access to anyone, plan a short walkthrough before you update, not after the panicked phone call.
What got pulled from the release
Real-time collaboration, the feature most people were actually waiting on, was cut twelve days before launch over performance and server load concerns, and postponed to a future version. If your plan this year involved multiple people editing the same post at once in WordPress, keep whatever workaround you have. I would rather they pull a feature than ship one that hammers shared hosting, but it does mean the update is less transformative on day one than the buildup suggested.
Check your PHP version before you do anything else
This is where I see small business sites break, every single release cycle. WordPress 7.0 requires PHP 7.4 minimum. Support for 7.2 and 7.3 is gone.
If you are on budget shared hosting that has not touched its PHP defaults in years, you may be sitting on an older version and not know it. Check under Tools then Site Health then Info in your dashboard. If you are below 7.4, do not update WordPress until your PHP is current. And honestly, 7.4 is the floor, not the target. Run PHP 8.2 or higher if your plugins support it, because the performance difference is significant and older versions stopped getting security patches a long time ago.
There is a second hosting consideration nobody put in the release notes. AI features mean outbound API calls, and the React-based admin is heavier than the old list tables. On cheap hosting, both show up as a sluggish dashboard. If your admin already felt slow, it will feel worse after this update, and that is a hosting problem rather than a WordPress problem. I broke down the usual culprits in my guide on how to speed up a slow WordPress site.
If your current host cannot give you a modern PHP version without an upsell call, that is your answer about whether to stay. I keep client sites on hosts that stay current without being asked. Hostinger is where I put budget-conscious sites that still need real performance, and SiteGround is my pick when a client needs stronger support and staging built in. I compared the options I actually use in my best WordPress hosting guide.
What I am telling clients to do right now
Five steps, in this order.
1. Confirm your PHP version first. Site Health tells you in about fifteen seconds. Fix it before updating core, not after.
2. Update on staging, not production. This is a major version with a redesigned admin and new APIs, and every plugin you run interacts with that. Test it somewhere that does not cost you customers if it breaks. If your host does not offer staging, that is another reason to move.
3. Audit your existing AI plugins. If you picked up AI tools over the last two years, several of them are now doing redundantly what core does natively. Every plugin you remove is one less security surface, one less update to babysit, and one less thing slowing your admin down. I keep a running list of the tools that survive my own audits in my post on the AI tools I actually use for small business clients.
4. Do not connect a provider until you know what it can touch. The Connectors hub makes authentication easy, which also makes it easy to hand broad access to something you have not vetted. Check what abilities a plugin registers and what permissions it wants before you authorize it.
5. Leave real-time collaboration out of your plans. It is not shipping in this version. Plan around the tools you have.
The part most small business owners are missing
The Abilities API is quietly the most important thing in this release, and it has almost nothing to do with writing blog posts.
What it sets up is a future where AI tools interact with your website as a system rather than as a page of text. That means the structure of your site, your product data, your inventory, your service descriptions, and your schema all start mattering in a new way. A site with clean, structured, well-labeled data becomes usable by AI agents. A site with everything crammed into unstructured page builder content does not.
That is the same lesson showing up in search right now, where clear structure and direct answers are what get a business quoted in AI results. I covered that side of it in my post on how small businesses get cited in Google AI Overviews. Different surface, same underlying requirement. Structure your content properly and machines can use it. Leave it messy and you get skipped.
So the real takeaway from WordPress 7.0 is not “install the AI plugin.” It is “get your site data and structure in order, because the tools that read it are about to get a lot more capable.”
Where this leaves you
WordPress 7.0 is a foundation release. It is not going to redesign your homepage or write your service pages. What it does is make WordPress a platform AI tools can plug into properly, with permissions and audit trails instead of a pile of competing plugins each holding their own API key.
The sites that benefit are the ones that are technically current: modern PHP, a host that keeps up, a lean plugin stack, and content that is actually structured. The sites that suffer are the ones on old PHP with fifteen overlapping plugins and everything locked inside a page builder. Getting from the second group to the first is most of the work, and it is the part people put off.
If you would rather not spend your weekend checking PHP versions and testing a major update on staging, that is what I do. I handle WordPress updates, hosting migrations, performance work, and site recovery for small businesses, and I have been doing it since long before anybody put AI in a release note. Head over to webguynick.com and tell me what your site is doing. I will tell you straight whether it needs work or whether you are fine to sit tight.
Short and honest: this is the host I use for client sites. Fast servers fix a lot of speed problems before you touch a plugin. Affiliate disclosure: if you buy through my link I may earn a commission at no extra cost to you.
If you want me to run hosting and care for you, that is a Web Guy Nick care plan: webguynick.com
A slow WordPress site is not just annoying. It costs you rankings, conversions, and money. Google's data shows that when load time goes from 1 to 3 seconds, bounce probability jumps 32 percent. I have been fixing slow WordPress sites since 2007, and the good news is that most of them share the same handful of problems. Here is exactly how I approach it in 2026.
1. Test Before You Touch Anything
Run your site through PageSpeed Insights and note your Core Web Vitals: LCP, INP, and CLS. Screenshot the results. You need a baseline so you know which changes actually helped. Test your homepage plus your most important landing page, since they often behave very differently.
2. Fix Your Hosting First
Hosting is the biggest speed lever there is. No amount of caching plugins can fix a server that takes two seconds to respond. If your TTFB (time to first byte) is over 600ms on repeat tests, your host is the problem.
Two hosts I put my own clients on:
SiteGround for business sites that need speed and solid support. Their caching stack is excellent out of the box.
Hostinger when budget matters. Their LiteSpeed servers punch way above their price point.
I compared these in more depth in my WordPress hosting guide if you want the full breakdown.
3. Set Up Caching Properly
If you are on a LiteSpeed server (Hostinger and many others), use the LiteSpeed Cache plugin. It is the fastest option because it talks directly to the server. On other hosts, WP Rocket is worth the license. One caching plugin only. Running two at once is one of the most common causes of broken, slow sites I get called in to fix.
4. Optimize Your Images
Oversized images are the number one cause of slow LCP scores. Three rules: serve WebP or AVIF, resize images to the dimensions they actually display at, and lazy load everything below the fold. Plugins like ShortPixel or the built-in optimization in LiteSpeed Cache handle all three automatically.
5. Cut the Plugin Bloat
Every active plugin adds PHP execution time, and many load CSS and JavaScript on every single page. Audit your plugin list twice a year. If you have not used it in six months, delete it. Deactivated plugins are still a security risk, so remove them completely.
6. Put a CDN in Front of It
Cloudflare's base plan covers most sites and takes about 15 minutes to set up. Your static files get served from a location near each visitor instead of making every request travel to your origin server. If you are on SiteGround, their built-in CDN works well too.
7. Clean Up Your Database
Years of post revisions, spam comments, and expired transients add up. WP-Optimize or the database tools in LiteSpeed Cache can clear these safely. Always take a backup first. On older sites I regularly recover 30 to 50 percent of the database size.
Speed work is measurable, which is why I like it. Before and after numbers do not lie. If you would rather have someone who does this every week take care of it, I offer site speed optimization and ongoing care plans through my agency. Start with my website checkup checklist to see where your site stands, or head to webguynick.com and tell me about your site.
Disclosure: some links in this post are affiliate links. I only recommend hosts I actually put client sites on, and it never changes what you pay.
Get the host and setup notes
Short and honest: this is the host I use for client sites. Fast servers fix a lot of speed problems before you touch a plugin. Affiliate disclosure: if you buy through my link I may earn a commission at no extra cost to you.
AI website builders promise a finished site in 60 seconds. WordPress powers over 40 percent of the web. I build with both, and the honest answer is that each one wins in different situations. Here is how to pick without wasting six months finding out you chose wrong.
What AI Builders Actually Deliver
Type a description, get a site. Wix ADI and Hostinger’s AI builder genuinely work for this. In my testing you get a clean single-page or 5-page site with stock images and placeholder-quality copy in under 10 minutes.
Where they shine: speed, zero learning curve, hosting included, no maintenance. Where they fall short: the copy is generic until you rewrite it, design options hit a ceiling fast, SEO control is limited, and you can never move the site off their platform.
What WordPress Delivers
WordPress is not a builder, it is a foundation. You own the files, the database, and every ranking the site ever earns. Any feature you can imagine exists as a plugin. Any designer can work on it after me, or before me.
Where it shines: ownership, SEO control, unlimited customization, no monthly platform tax. Where it falls short: it needs hosting, updates, and either your time or a pro to set up right. Good hosting like SiteGround handles most of that for you.
If you are validating a brand-new business and might pivot in 3 months, use an AI builder and do not overthink it. If your business depends on Google traffic, local search, or you plan to be around in 5 years, build on WordPress. The businesses that regret their choice are almost always the ones that grew on a builder and then discovered they could not take anything with them.
The Hybrid Move Nobody Talks About
Start with the AI builder to nail down your content and structure cheap, then have a pro rebuild it on WordPress once revenue proves it. I have done this migration for clients and it works, just know the rebuild is a full project, not an export button.
WordPress vs AI Builder FAQ
Can AI builders rank on Google?
Yes for easy keywords, but you hit a ceiling. Limited schema control, slower pages, and thin content tools make competitive rankings harder.
Is WordPress harder to use than an AI builder?
Day one, yes. Day 100, no. Editing pages and posts in WordPress is simple once the site is built. The hard part is the initial build, which is what you hire out.
What does an AI builder really cost over 5 years?
At $30 a month average, about $1,800, and you own nothing at the end. A $2,000 WordPress build plus cheap hosting costs about the same and you own everything.
Can I move my Wix site to WordPress later?
Your content can move, your design and SEO signals mostly cannot. It is a rebuild, not a transfer.
Not Sure Which Side You Land On?
Email me your situation and I will tell you straight, even if the answer is an AI builder and not me. I reply within 24 hours.
Some links on this page are affiliate links. If you buy through them I may earn a commission at no extra cost to you. I only recommend tools I actually use.
Short answer: most small businesses spend between $500 and $5,000 to get a website launched in 2026, then $30 to $150 a month to keep it running. Where you land in that range depends on one decision: build it yourself, hire a freelancer, or hire an agency.
I have built WordPress sites for small businesses since 2007, so the numbers below come from real projects, not guesses.
The Three Ways to Get a Website (and What Each Really Costs)
1. DIY With a Website Builder: $0 to $500 Up Front
Tools like Wix or Hostinger’s AI builder can get a basic site live in a weekend. Expect $15 to $50 a month for the platform, plus a domain at about $15 a year.
Good fit if you just need an online business card and you have more time than money. The tradeoff is your time, template-looking design, and hitting a wall the first time you need something custom.
2. Freelance Web Designer: $1,500 to $5,000
This is the sweet spot for most small businesses. A freelancer builds you a custom WordPress site you own outright, usually in 2 to 4 weeks. My own projects typically land in this range depending on page count and features.
What drives the price up or down: number of pages, e-commerce, booking systems, copywriting, and how much SEO work is included.
3. Agency: $5,000 to $25,000+
Agencies bring teams: strategist, designer, developer, project manager. If you are a funded startup or an established company with complex needs, this is your lane. Most local small businesses do not need agency pricing to get agency-quality results.
Paying monthly for page builders they never use, buying premium plugins that duplicate free ones, paying for SEO packages with no reporting, and rebuilding from scratch every 3 years because the last site was built on a platform they could not export from. A WordPress site you own avoids that last one entirely.
Cost vs Value: The Math That Matters
A $2,000 website that brings you two $1,500 clients has paid for itself and then some. A free website that never ranks and loads slow costs you every customer who searched and found your competitor instead. Price the outcome, not the invoice.
Small Business Website Cost FAQ
Can I get a professional website for under $1,000?
Yes, if you keep it to 3 to 5 pages and provide your own text and photos. Ask for a fixed quote up front.
Is WordPress cheaper than Wix long term?
Usually. Wix costs more per month forever and you cannot take the site with you. WordPress hosting runs $5 to $15 a month and you own everything.
How much should I budget per month after launch?
$30 to $150 covering hosting, domain, and basic maintenance. E-commerce sites run higher.
Do I need to pay for SEO separately?
Basic on-page SEO should be included in any decent build. Ongoing SEO campaigns are a separate service, typically $300 or more a month.
Want a Real Number for Your Project?
I build WordPress sites for small businesses and give fixed quotes with no surprises. Email me here and I will reply within 24 hours with a straight answer.
Some links on this page are affiliate links. If you buy through them I may earn a commission at no extra cost to you. I only recommend tools I actually use.
Short and honest: this is the host I use for client sites. It is fast, support is solid, and it keeps care plans simple to run. Affiliate disclosure: if you buy through my link I may earn a commission at no extra cost to you.
If you want me to run hosting and care for you, that is a Web Guy Nick care plan: webguynick.com
Disclosure: This post contains affiliate links. If you buy through them I may earn a commission at no extra cost to you.
I have been building WordPress sites since 2007, and hosting is the number one thing my clients get wrong before they come to me. Slow, oversold hosting kills your Google rankings and your patience. These are the hosts I actually put client sites on in 2026, in order of who should use them.
SiteGround is my default recommendation for most small business sites. Speed is solid, their WordPress tools handle caching and updates for you, and support responds fast when something breaks.
Pros: fast managed WordPress setup, excellent support, free email hosting included Cons: renewal prices are higher than the intro rate Pricing: intro plans start around $3 to $8/month
If your budget is tight, Hostinger gets you online for a few dollars a month with decent speed. This very site runs on Hostinger. Just know you will likely upgrade within a couple of years as traffic grows.
Pros: cheapest way to start properly, decent performance for the price Cons: support is slower, renewal prices jump Pricing: starts under $5/month
WP Engine is what I use when a client has outgrown budget hosting. Built-in staging, daily backups, and their support team knows WordPress specifically, not just servers.
Pros: WordPress-specific support, great developer tools, includes premium themes Cons: overkill for a brand new site Pricing: starts around $20 to $30/month
Kinsta: best premium option when downtime is not acceptable
I recommend Kinsta when a business cannot afford downtime. Google Cloud infrastructure, free migrations, and support that actually answers.
Pros: fast out of the box, excellent dashboard, free staging Cons: no email hosting included, premium price Pricing: starts around $35/month
How I actually choose for clients
Under 5,000 visits/month and tight budget: Hostinger
A business site that produces revenue: SiteGround
Ecommerce or multiple sites: WP Engine or Kinsta
FAQ
Is cheap hosting really that bad? For a hobby site, no. For a business, yes. A one second delay in load time measurably drops conversions, and budget hosts get slow at exactly the moment your site gets popular.
Should I use hosting resold by my web designer? Only if they are transparent about which company is behind it. I set clients up on their own accounts so they always own their site.
Can you migrate my site for me? Yes. I do migrations and full site builds. Get in touch here.
Need help picking or migrating? I have done this hundreds of times. Contact me and I will point you the right way even if you do not hire me.
Short and honest: this is the host I use for client sites. It is fast, support is solid, and it keeps care plans simple to run. Affiliate disclosure: if you buy through my link I may earn a commission at no extra cost to you.
An intuitive, user-friendly navigation system is paramount in optimizing user experience, driving engagement, and maximizing conversion rates on your WordPress website. Whether you're building a website from scratch or revamping an existing one, strategic and seamless navigation fosters an impressive and memorable user journey that keeps visitors coming back for more.
Dive into this comprehensive guide that details the essentials of great WordPress site navigation and learn how to elevate your online presence with user-centric design approaches. Emphasizing the importance of smooth navigation, this expert resource discloses valuable insights to help you generate lasting, positive impressions on your audience, increase user engagement, and ultimately contribute to your business's online success.
1. Define Clear Navigation Hierarchy
Establishing a logical and organized navigation hierarchy is crucial for a user-friendly site. Users should effortlessly find the information they need; thus, it's essential to plan your site's structure with usability in mind. Consider these guidelines when designing your navigation hierarchy:
- Create a Visual Sitemap: Represent your site's structure visually to identify content relationships and prioritize information, ensuring a smooth flow for users
- Group Related Content: Organize content into categories and subcategories to facilitate intuitive navigation and improve site scalability
- Limit Primary Navigation Options: Prevent cognitive overload by limiting the number of top-level navigation items, adhering to the "Rule of 7" (i.e., a maximum of seven menu items)
2. Utilize Efficient Navigation Layouts
The choice of navigation layout directly impacts the user experience. Selecting an appropriate layout that maximizes usability and responsiveness is key to providing a pleasing and accessible experience. Examine these popular navigation layouts:
- Horizontal: This layout is ideal for sites with a limited number of primary menu items and ensures ease of access, especially on desktop devices
- Vertical: Suitable for sites with complex hierarchies or multiple subcategories, vertical navigation allows for better organization and scalability
- Hamburger/Off-Canvas: A convenient option for responsive design, the hamburger menu conserves screen space and focuses on user-centered mobile navigation
- Sticky: Implementing a sticky (fixed) menu guarantees easy site navigation regardless of the user's scrolling position
3. Design Visually Appealing and Functional Menu Items
To enhance user engagement and simplify navigation, focus on the visual appeal and functionality of your menu items. Apply these design principles to create an outstanding menu system:
- Ensure Readability: Use clear, legible fonts and appropriate font sizes for easy interpretation of menu items
- Create Visual Hierarchy: Employ different font styles, sizes, and colors to emphasize the importance of primary, secondary, and tertiary menu items
- Utilize Whitespace: Maintain appropriate spacing between menu items for better readability and a clutter-free appearance
- Prioritize Accessibility: Follow WCAG accessibility guidelines, ensure keyboard accessibility, and use ARIA roles for screen reader compatibility
4. Optimize Clickability with Clear and Recognizable Buttons
Clickable elements, such as buttons or links, must be easily recognizable and functional. Apply these techniques to optimize clickability and enhance user experience:
- Employ Clear Visual Cues: Differentiate clickable elements from static content using visual indicators, such as distinct colors, underlines, or hover effects
- Use Descriptive and Concise Labels: Ensure buttons and links are self-explanatory and accurately represent the content or action they lead to
- Maintain Optimal Button Sizes: Establish a balance between visibility and screen space usage by creating adequately sized buttons, particularly on mobile devices
5. Implement Breadcrumbs for Enhanced Contextual Navigation
Breadcrumbs are an effective way to show users their current location within the site hierarchy and provide a linear path back to the homepage. Implement breadcrumbs by considering these best practices:
- Maintain Consistency: Use a single breadcrumb style and positioning throughout your site to establish familiarity and ease of use
- Keep It Minimal: Display only essential hierarchical levels, avoiding middle subcategories to reduce clutter
- Design for Clarity: Utilize visual separators and typography contrast to distinguish between breadcrumb levels and improve readability
6. Prioritize Mobile Responsiveness and Cross-Browser Compatibility
As more users access websites via various devices and browsers, ensuring seamless navigation across different platforms is essential. Optimize your site's responsiveness and compatibility by:
- Using Responsive Design Practices: Employ flexible layouts, resizable images, and conditional loading to adapt your navigation system to different screen sizes and resolutions
- Testing Cross-Browser Functionality: Regularly test your site navigation on various browsers, such as Chrome, Firefox, Safari, and Edge, to identify potential issues and inconsistencies
7. Regularly Evaluate and Improve Navigation Performance
Continuous evaluation and improvement are crucial for maintaining an effective navigation system. Conduct periodic assessments and user testing to identify areas that require optimization. Utilize analytics tools, such as Google Analytics or Hotjar, to gather insights on user behavior, engagement, and navigation patterns.
Elevate Your WordPress Site's User Experience with Expert Navigation Design
Strategically designed navigation is key to providing an exceptional user experience on your WordPress website. By implementing the techniques discussed in this guide, you can create an intuitive and visually appealing navigation system that drives user engagement, fosters positive interactions, and boosts conversion rates for your online business.
If you're eager to enhance your WordPress site's navigation but need professional help, look no further than Nick Throlson. With years of experience as a WordPress specialist, I can provide tailored responsive design solutions for your specific navigation needs and transform your website into a user-friendly, conversion-optimized online presence.
Ready to unlock the full potential of your WordPress site's navigation? Schedule a consultation with me today and pave the way to an outstanding user experience that drives results for your business.
We use cookies to improve your experience on our site. By using our site, you consent to cookies.
Cookie Preferences
Manage your cookie preferences below:
Essential cookies enable basic functions and are necessary for the proper function of the website.
Name
Description
Duration
Cookie Preferences
This cookie is used to store the user's cookie consent preferences.
30 days
These cookies are needed for adding comments on this website.
Name
Description
Duration
comment_author
Used to track the user across multiple sessions.
Session
comment_author_email
Used to track the user across multiple sessions.
Session
comment_author_url
Used to track the user across multiple sessions.
Session
Google reCAPTCHA helps protect websites from spam and abuse by verifying user interactions through challenges.
Name
Description
Duration
_GRECAPTCHA
Google reCAPTCHA sets a necessary cookie (_GRECAPTCHA) when executed for the purpose of providing its risk analysis.
179 days
Google Tag Manager simplifies the management of marketing tags on your website without code changes.
Name
Description
Duration
cookiePreferences
Registers cookie preferences of a user
2 years
td
Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.
session
Statistics cookies collect information anonymously. This information helps us understand how visitors use our website.
Jetpack's built-in visitor analytics. It records page views, referring sites, search terms, and outbound link clicks, and also carries the shared visitor-tracking library used by Jetpack Instant Search and WooCommerce Analytics.