WordPressのプラグイン「AddQuicktag」をカスタム投稿で使用する方法をメモ。
サンプルコード
投稿タイプがnewsの場合、functions.phpに以下のように記述します。
functions.php
function addquicktag_post_types($post_types) {
	$post_types[] = 'news';
	return $post_types;
}
add_filter('addquicktag_post_types', 'addquicktag_post_types');
AddQuicktagの設定画面を確認すると、newsの項目が追加されているのが確認できました。

【参考サイト】

コメントが承認されるまで時間がかかります。