我有一个typo3 的网站,我想添加一个搜索表单(typo3 的搜索表单)。如何自定义搜索?我只想在页面的正文中搜索。我想排除元标题、关键字等字段。谢谢!我在一个网站上找到了这个,但我不知道在哪里修改
$TCA['tx_yourext_table'] = array(
'ctrl' => array(
'title' => 'Title of your table',
'label' => 'title',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
// etc...
'searchFields' => 'title, other_field, yet_other_field',
),
);