nextjs-headless-wordpress
nextjs-headless-wordpress copied to clipboard
Minor Seo Bug
trafficstars
Hello Imranhsayed, thank you for the repo and lessons.
https://github.com/imranhsayed/nextjs-headless-wordpress/blob/main/frontend/src/components/seo/index.js
The fields have the following values:
metaRobotsNoindex, // index | noindex metaRobotsNofollow, // follow | nofollow
So in the component, it should be
noindex={metaRobotsNoindex === "noindex"}
nofollow={metaRobotsNofollow === "nofollow"}