Hello,
Is there a way to include keywords in misc pages
I use several extra pages on Coppermine
<?php
define('IN_COPPERMINE', true);
require('include/init.inc.php');
pageheader('Terms of Use');
?>
page content
<?php
pagefooter();
?>
I would like to include keywords in those pages.
Any idea
Thanx
You can do that easily, just tell pageheader() what extra stuff to add.
pageheader('Terms of Use', '<meta name="keywords" content="alpha, beta, gamma" />');