自分のサイトに入れてたのにどうやったのか忘れてたので、メモ。
1.ショートコードを作る。
2,プラグインAddQuicktagをインストール。設定。
3.カスタム投稿タイプにも使いたいときには以下のコードをfunctions.phpに
// add custom function to filter hook 'addquicktag_post_types' 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[] = 'my_custom_post_type'; return $post_types; }