Opens, closes or creates the content for the tag to wrap.
Value | Use |
---|---|
true | opens the tag |
false | closes the tag |
string | wraps the contents of 'string' with the tag |
array | Only used for getUL(), getOL(), and getDT() methods!! |
$child = true;
<tag>
$child = false;
</tag>
$child = 'My content here';
<tag>My Content here</tag>