API16:JDocumentHTML/addCustomTag
From Joomla! Documentation
Description
Adds a custom html string to the head block
<! removed transcluded page call, red link never existed >
Syntax
addCustomTag($html)
| Parameter Name | Default Value | Description |
|---|---|---|
| $html | The html to add to the head public |
Returns
void
Defined in
libraries/joomla/document/html/html.php
Importing
jimport( 'joomla.document.html.html' );
Source Body
function addCustomTag($html)
{
$this->_custom[] = trim($html);
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples