вот так вставили (п.1)?
if( class_exists('Kama_Post_Meta_Box') ){
new Kama_Post_Meta_Box( array(
'id' => 'seo',
'title' => 'SEO',
'theme' => 'table',
'fields' => array(
'title' => array(// название поля: seo_title
'type'=>'text', 'title'=>'Title', 'desc'=>'Заголовок страницы (рекомендуется 70 символов)', 'attr'=>'style="width:99%;"'
),
'description' => array(
'type'=>'textarea','title'=>'Description', 'desc'=>'Описание страницы (рекомендуется 160 символов)', 'attr'=>'style="width:99%;"'
),
'keywords' => array(
'type'=>'text', 'title'=>'Keywords', 'desc'=>'Ключевые слова', 'attr'=>'style="width:99%;"'
),
),
));
}