Metadata template by default
Posted: Fri Oct 13, 2006 6:36 pm
Hi there,
when creating a new content, this metadata template...
...should be inserted automatically into the metadata textarea.
Where can I preset the $metadata variable?
I've tried it with the siteprefs.php (canary, line 53), but this didn't work.
Hmmm, didn't find a possibility anywhere else...
Kind regards
Michael
when creating a new content, this metadata template...
Code: Select all
<meta name="description" content="" lang="de" />
<meta name="keywords" content="" lang="de" />
<meta name="date" content="yyyy-mm-dd" />
Where can I preset the $metadata variable?
I've tried it with the siteprefs.php (canary, line 53), but this didn't work.
Code: Select all
$metadata = '<meta name="description" content="" lang="de" /><br /><meta name="keywords" content="" lang="de" /><br /><meta name="date" content="yyyy-mm-dd" />';
if (isset($_POST['metadata'])) $metadata = $_POST['metadata'];
Kind regards
Michael