JDocument/getMetaData
From Joomla! Documentation
Syntax
string getMetaData( $name, $http-equiv )
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 getDescription or getGenerator respectively. | |
| $http-equiv | Boolean | True if meta data item requested is equivalent to an HTTP header field. | false |
Example
$doc =& JFactory::getDocument(); $content = $doc->getMetaData( “tag-name” );
