私はfunctions.phpで次のコードを使用して取り組んでいるワードプレスのウェブサイトに3つのカスタム投稿タイプを設定しました:
if ( function_exists('add_action') )
{
add_action( 'init', 'create_post_types' );
function create_post_types()
{
register_post_type('dj',Array('labels' => Array('name' => "DJ’s",'singular_name' => "DJ"),'public' => true,'has_archive' => true));
register_post_type('gerecht',Array('labels' => Array('name' => "Gerechten",'singular_name' => "Gerecht"),'public' => true,'has_archive' => true));
register_post_type('agenda',Array('labels' => Array('name' => "Agenda",'singular_name' => "Evenement"),'public' => true,'has_archive' => true));
}
}
しかし、wp-admin画面では、投稿にメタ情報を追加できません。これを修正するにはどうすればよいですか、それとも不可能ですか?
編集:これにはプラグインを使用したくありませんが、自分でコードを記述します。