references:joomla.framework:application:japplication-prependmetatagTable of Contents
prependMetaTag
Adds a meta tag to the head block of the current document. The method is deprecated and provided for backwards compatibility with Joomla! 1.0. It is scheduled to be removed in future versions. Use JDocument-setMetaData instead. Syntaxvoid appendMetaTag ( $name, $content )
ExamplesExample global $mainframe; $mainframe->appendMetaTag( "metatagname", "metatagcontent" ); will insert the following meta tag into the head block of the current document: <meta name="metatagname" content="metatagcontent" /> |


