カスタム投稿タイプでもAddQuicktagプラグインを使えるようにする

カスタム投稿が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

この記事を書いた人

mihoji

大阪でWEB屋さんをやっています。 WordPressを使ったサイト構築と、小規模な企業のマーケティング提案が得意です。 WordPressとIT系勉強会とビールがすき。