WordPress + NextJs – The best compination for the Fastest Dynamic Websites

  • Home
  • WordPress + NextJs - The best compination for the Fastest Dynamic Websites

I’m saving 90% of back-end development time.

Nextjs is now the most popular because of features such as SSR. But when we make a website, choosing the back-end or cms is always a little challenging. I have seen people are using headless cms like Strapy, Nothing wrong with it but I found many benefits when we use WordPress headless.

Test yourself WordPress REST API

If you are not familiar with WordPress and if you want to know how the WordPress REST API works. You can create temporary WordPress instances from https://wp.new or https://tastywp.com/

Once the instance is created open the following API

https://<host_name>/wp-json/v2/posts

You will see all available posts as JSON

Learn more about the WordPress REST API

Try to create new posts in the admin panel [create a link to create a new post in WordPress] and check the API response.

Make the WordPress ready for NextJs

SEO

SEO is important for every website. I’m recommending the Yoast SEO WordPress plugin. Once you install the plugin “yoast_seo” attribute will come into your API response body for posts or pages. It will contain all meta information for the web page or blog page.

Breadcrumbs

Yoast SEO also provides the breadcrumbs for your page.

Schema

Adding a schema JSON is a good practice for better SEO. Yoast plunging also providing on API. You only need to add to your page as HTML.

Sitemap

You can make a dynamic sitemap using the WordPress API. Sample codes are the following.

// To make the date Sitemap Frindly
function getSitemapDate(dateString: string): string {
  if(!dateString) return null;
  const date = new Date(dateString);
  const isoDate = date.toISOString(); // Returns in YYYY-MM-DDTHH:MM:SS.sssZ format
  return isoDate.split(".")[0] + "+00:00"; // Remove milliseconds and add timezone
}

export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
  let pages = await fetch(
    process.env.WORDPRESS_API_URL +
      "pages/?_fields=slug,link,modified,yoast_head_json"
  ).then((res) => res.json());

 return pages.map((page: any) => {
    return {
      url: `${process.env.SITE_URL}/${getPath(page.link)}`,
      lastModified: getSitemapDate(page.modified),
      images: page.yoast_head_json?.og_image?.map((og: any) =>  og.url.replaceAll("&","")),
    };
  });
}
author

By Habil M

Software Engineer

Date

2025-03-11T08:05:18

This website uses cookies to improve your experience. By continuing to browse, you consent to our use of cookies and agree to our Privacy Policy.