カスタム投稿タイプに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’);
関連記事はこちら!
スポンサーリンク
タグ:addquicktag, カスタム投稿タイプ, 反映