カスタム投稿が1個のとき
[html]
//カスタム投稿編集画面にAddQuicktagを追加
function addquicktag_set_custom_post_type($post_types){
$post_types[] = "カスタム投稿タイプ名";
return $post_types;
}
add_filter(‘addquicktag_post_types’, ‘addquicktag_set_custom_post_type’);
[/html]
カスタム投稿が2個のとき
[html]
//カスタム投稿編集画面にAddQuicktagを追加
function addquicktag_set_custom_post_type($post_types){
array_push($post_types, "カスタム投稿タイプ名1", "カスタム投稿タイプ名2");
return $post_types;
}
add_filter(‘addquicktag_post_types’, ‘addquicktag_set_custom_post_type’);
[/html]
参考記事:http://yumeneko.pmfan.jp/wordpress/plugins/custom-post-type-addquicktag.html