Documentation

VercelPress turns your existing WordPress into a blazing-fast Next.js site on Vercel — you keep editing in WordPress, your visitors get an edge-cached frontend with green Core Web Vitals.

Quickstart

Three steps from install to live:

Install the plugin

Install from your WordPress admin, or via WP-CLI on your origin host:

# Install + activate the VercelPress plugin
wp plugin install vercelpress --activate

# Then paste the connection token from your VercelPress dashboard
wp option update vercelpress_token "vp_live_xxx"

How it works

Your WordPress stays exactly where it is. VercelPress fetches content via the REST API or WPGraphQL at build time, caches it at the edge, and serves a static-fast Next.js frontend. When you publish, the plugin sends a signed webhook that revalidates only the affected paths.

Revalidation

On save_post, delete_post, or a term update, the plugin POSTs a signed event. VercelPress maps the event to the exact paths and cache tags to invalidate, then triggers on-demand ISR — no full rebuild, no waiting.

Performance

Every page ships edge-cached and pre-rendered. Typical results moving from traditional WordPress hosting:

CLI

npx vercelpress login
npx vercelpress link        # link a WordPress site
npx vercelpress deploy      # trigger a deploy
npx vercelpress logs --site acme

Need a hand? Talk to us →