harumemo

メモ書きです。

wordpress、カテゴリ最上位のチェックボックスを無効化する

function my_print_footer_scripts() {
echo '<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function($){
$("div.postbox-container ul#categorychecklist > li > label > input[type=checkbox]").each(function(){
$(this).attr("onclick","return false;");
});
});
//]]>
</script>';
}
add_action('admin_print_footer_scripts', 'my_print_footer_scripts', 21);