/*-------------------------------------------------------
エディタのbodyにclass指定
--------------------------------------------------------*/
function my_tiny_mce_before_init( $init_array ) {
global $post;
global $post_type;
///ページ名を調べる
$pagename = $post->post_name;
$init_array['body_class'] = 'post-' . $post->ID . ' ' . $post_type .'-'.$pagename;
return $init_array;
}
add_filter('tiny_mce_before_init', 'my_tiny_mce_before_init');