WordPressプラグインを作成する際に、カスタム投稿タイプの新しいサブメニューを追加する方法を知りたいです。今のところ、「funds」というカスタム投稿タイプを作成しました。
add_action( 'init', 'wnm_add_funds' );
function wnm_add_funds() {
register_post_type('wnm_funds',
array(
'labels' => array(
'name' => __( 'Funds' ),
'add_new' => __( 'Add New Fund' ),
'add_new_item' => __( 'Add New Fund' ),
'edit_item' => __( 'Edit Fund' )),
'public' => true,
'has_archive' => true,
'menu_position' => 100
)
);
}
このコードは、「ファンド」と呼ばれるカスタム投稿タイプを追加し、その下に2つのサブメニュー(「ファンド」、「新しいファンドの追加」)があります。私がやりたいのは、資金の下に新しいサブメニューを追加することです。例「ファンド設定」を追加したいので、ファンドの下に(ファンド、新しいファンドの追加、ファンド設定)があります。
どうすればいいですか?