custom_post_name
部分を適用したいカスタム投稿タイプの名前に変更して、以下の記述をfunctions.phpに追記してください。
add_action('admin_menu', 'myplugin_add_custom_box'); function myplugin_add_custom_box() { if (function_exists('add_meta_box')) { add_meta_box('myplugin_sectionid', __('作成者', 'myplugin_textdomain'), 'post_author_meta_box', 'custom_post_name', 'advanced'); } }