Google Search Console Guide
Google Search Console Guide
1. Add the verification code
Open _config.yml and set:
google_site_verification: "YOUR_GOOGLE_VERIFICATION_CODE"
Use only the code value from Google Search Console, not the full meta tag.
2. Deploy the site
After updating the config, deploy the site so the verification meta tag is added to the shared page head.
The tag renders from _layouts/default.html as:
<meta name="google-site-verification" content="...">
3. Verify the site in Google Search Console
- Open Google Search Console.
- Add your property.
- If you verify with the HTML tag method, copy the verification code.
- Paste that code into
google_site_verificationin_config.yml. - Deploy the site.
- Return to Search Console and click
Verify.
If you verify the full domain with DNS instead, you can still keep this config field available for URL-prefix verification later.
4. Submit the sitemap
This site already uses jekyll-sitemap, so Jekyll generates:
In Search Console:
- Open your property.
- Go to
Sitemaps. - Submit:
https://thelivinedit.com/sitemap.xml
5. robots.txt status
The site already has robots.txt, and it:
- allows crawling
- points search engines to the sitemap
6. Request indexing for important pages
After publishing important pages, you can speed up discovery by using the URL inspection tool in Search Console and clicking Request indexing for:
- the homepage
- important posts
- cluster hub pages
- major evergreen pages
Notes
sitemap.xmlis generated automatically during the Jekyll build.- The verification meta tag only renders when
google_site_verificationis set. - If the code is blank, nothing extra is added to the page head.