投稿画面のカテゴリメタボックスの表示をカスタマイズ

管理パネルのカテゴリからスクロールバーをはずし子カテゴリに折りたたみ機能を付けます。

<?php
add_action( 'admin_head','my_category_toggle' );

function my_category_toggle(){
?>
<script type="text/javascript">
<!-- 
	jQuery(function() {
		jQuery( '.categorydiv div.tabs-panel' ).css({'max-height':'100%'}); 
		jQuery( '#categorychecklist > li').each(function(){	 
			if( jQuery( this ).children('ul').hasClass( 'children' ) ){
			jQuery( this ).children( 'label' ).before('<span class="toggle-switch">●</span>&nbsp;').css({'cursor':'default'});
			}
		});
		jQuery('#categorychecklist > li > .children').hide();
		jQuery('.toggle-switch').click(function () {
			jQuery(this).siblings('ul').toggle("slow");
		});
	 });
	 //-->
</script> 
< ?php
}
?>

[emulsion_relate_posts]