エディタに、それぞれの投稿毎に、カラータイプやカラム指定を追加する カスタムページタイプボタンを追加
functions.php
<?php
// add more buttons to the html editor
function appthemes_add_quicktags() {
if (wp_script_is('quicktags')){
?>
<script type="text/javascript">
QTags.addButton( 'raindrops_page_type', 'raindrops page type', '<!--[raindrops color_type="minimal" col="1"]-->', '', 'page type', 'Page Tyep Tag', 1 );
</script>
<?php
}
}
add_action( 'admin_print_footer_scripts', 'appthemes_add_quicktags' );
?>