Hi Jordi. Jumping on to this as I have a somewhat similar query about Zenblog, which is a great and simple platform btw to post on.
Happy to make a new thread if needed.
So my query is also about using Zenblog as a source for a Webstudio site.
Google might see the content as duplicate if it's indexed on both Zenblog and Webstudio site.
To avoid this:
1) Canonical Tag: On Zenblog, set a canonical URL pointing to your Webstudio domain. This tells Google that the Webstudio version is the original.
Insert the Canonical Tag: Within the <head> section of the HTML, add the following line:
<link rel="canonical" href="
https://yourwebstudiodomain.com/path-to-content" />
with the exact URL of the corresponding content on your Webstudio site.
2) Look for options to set canonical URLs for your posts .or instance, filters such as get_canonical_url to customize canonical URLs for individual posts.
-Noindex on Zenblog: If you don't want Zenblog pages indexed at all, add a noindex meta tag. (not relevant in my case)
-Nofollow on Links: If you're concerned about passing SEO value to Zenblog, you can add rel="nofollow" to links pointing there, but this won’t prevent indexing.
Is any of this possible or are you planning to build this into Zenblog perhaps?
Thanks!