カスタム投稿タイプにaddquicktagを反映させる方法

カスタム投稿タイプにaddquicktagを反映させる方法

カスタム投稿タイプを追加した場合、
addquicktagプラグインを使っていても、ボタンがそのままでは反映されません!

そんな時は、functions.phpに以下の記述を書くだけで反映します!!

//カスタム投稿編集画面にAddQuicktagを反映させる
function addquicktag_set_custom_post_type($post_types){
$post_types[] = “motocolumn”;
return $post_types;
}
add_filter(‘addquicktag_post_types’, ‘addquicktag_set_custom_post_type’);

ポチッ☆とクリックお願いします!
↓ ↓ ↓

  • にほんブログ村 IT技術ブログ ホームページ・サイト制作支援へ

コメントは受け付けていません。

サブコンテンツ

TOP