<?php
class Page extends SiteTree {
private static $db = array(
'MetaTitle' => 'Text'
);
private static $has_one = array(
);
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab('Root.Main', new TextField('MetaTitle'), 'Content');
return $fields;
}
}
Do dev/buill after you edit the mysite/code/Page.php?
Posted to: How to input title tag metadata | Show Thread | Post Reply