JDocument/setMetaData
From Joomla! Documentation
Sets the value of a meta data item.
where:
Argument | Data type | Description | Default |
---|---|---|---|
$name | string | Name of meta data item. If $name is 'description' or 'generator' then the effect is the same as calling setDescription or setGenerator respectively. Meta data names are always folded to lowercase. | |
$content | string | Content of meta data item. If there is already a meta data item with the same value of $name (case independent) then this value will replace it. | |
$http-equiv | Boolean | True if meta data item is equivalent to an HTTP header field. | false |
Example 1
$doc =& JFactory::getDocument();
$doc->setMetaData( 'tag-name', 'tag-content' );
<meta name="tag-name" content="tag-content" />
Example 2
$doc =& JFactory::getDocument();
$doc->setMetaData( 'tag-name', 'tag-content', true );
<meta http-equiv="tag-name" content="tag-content" />
No comments:
Post a Comment