カスタム投稿タイプでも「add quicktag」を使用する
add_filter( 'addquicktag_post_types', 'my_addquicktag_post_types' );
/**
* Return array $post_types with custom post types
*
* @param $post_type Array
* @return $post_type Array
*/
function my_addquicktag_post_types( $post_types ) {
$post_types[] = 'カスタムポストの名前';
$post_types[] = 'カスタムポストの名前';
$post_types[] = 'カスタムポストの名前';
return $post_types;
}