what does recursive="true" mean in meta title
Today I saw recursive="true" in meta tags, meta title, meta description and meta keywords. I wanted to know what does it mean? why this tag is used?
Hi @elinsys, I am not sure what you mean. Can you provide us HTML example (copied from the site where you saw it)?
Thank you.
I can't share the screenshot.but will share few codes
<title recursive="true"></title>
<link rel="icon" type="image/png" href=""/>
<meta name="description" content=" " recursive="true"/>
<meta name="keywords" content="" recursive="true"/>
There is no valid attribute named recursive in HTML. Check the HTML atributes reference here: https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes
It's complete list of HTML attributes with descriptions.
All I was able to find regarding recursive="true" was a Umbraco CMS forums, where they mention this, but it's different context - not being used directly in HTML.
If recursive is on, it will look at the parent for existing meta info and if the parent doesn't have anything, it looks in the grandparent, and up, all the way to the highest node in the tree.
That's about it. Can you tell us where did you see that?
Thanks