meta([$name = ''[, $content = ''[, $type = 'name'[, $newline = "n"]]]])
Parameters:
$name (string) ? Meta name
$content (string) ? Meta content
$type (string) ? Meta type
$newline (string) ? Newline character Returns:
HTML meta tag Return type:
string
Helps you generate meta tags. You can pass strings to the function, or simple arrays, or multidimensional ones.
Examples:
echo meta('description', 'My Great site');
// Generates: <meta name="description" content="My Great Site"