Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:<?php
/*
Extension Name: My Custom Meta Info
Extension Url: http://www.yourdomain.com/
Description: Adds my custom meta information to the header of my forum
Version: 1.0
Author: Your Name
Author Url: N/A
*/
if (@$Head) {
$Head->Addstring("<meta name=\"description\" content=\"Stuff about my forum\" />");
}
?>
<?php
/*
Extension Name: My Custom Meta Info
Extension Url: http://www.yourdomain.com/
Description: Adds my custom meta information to the header of my forum
Version: 1.0
Author: Your Name
Author Url: N/A
*/
if (in_array($Context->SelfUrl, array("index.php","signin.php","apply.php","passwordreset.php","passwordrequest.php","account.php","search.php"))) {
if (@$Head) {
$Head->Addstring("<meta name=\"description\" content=\"Stuff about my forum\" />");
}
}
?>
1 to 5 of 5