WordPress+NextJS vs traditional WordPress, which one is the better way to build a web application ?

2.33K viewsWordPress WordPress+NextJS
0

I found php is not so good to build front page, but if I build the web app by using WordPross + NextJS, it means I will have to given up on lots WordPress plugins. It seems difficult to make a choice. what do you say ?

hardy Edited comment

I totally agree! PHP, while great for server-side logic (especially in WordPress), is not the best for modern front-end development. It lacks the flexibility and interactivity that JavaScript-based frameworks like Next.js (which uses React) provide. Next.js offers better tools for building dynamic, interactive, and high-performance user interfaces.

Don’t worry too much about “Losing WordPress Plugins with Next.js”, because lots famous wordpress plugins expose via REST API or GraphQL, meaning you can still access that functionality in your Next.js front-end. You would just need to handle the data fetching and display yourself, rather than relying on the plugin’s PHP templates.

For plugins that don’t work in a headless setup, you may need to re-implement certain functionalities manually, which could be time-consuming and costly. However, in the long run, this gives you better control over your app and its performance.

thx for reply, you helped me!

0

Full breakdown after building on both approaches:

Traditional WordPress:

  • ✅ Faster to ship
  • ✅ All-in-one, host it and go
  • ✅ Gutenberg is actually decent now
  • ❌ Harder to customize complex logic
  • ❌ Frontend flexibility limited

WordPress + NextJS:

  • ✅ Full frontend freedom
  • ✅ Better performance (SSG/SSR)
  • ✅ Modern dev experience
  • ❌ More complex setup
  • ❌ API latency between WP and Next

My recommendation:

CMS-only use case → traditional WP

App-like experience needed → WP + NextJS

We chose hybrid: WP for content, Next for the actual app. Works great.

You are viewing 1 out of 4 answers, click here to view all answers.