假设您使用的是分层分类法,这对我很有用,请将“tx”更改为您所称的分类法。请注意,如果WP将来更改其HTML结构或命名约定,这可能不起作用。
add_action(\'admin_footer\', function() {
?>
<script type="text/javascript">
jQuery(document).ready(function ($) {
//taxonomy
var tx = \'post-type\';
var $scope = $(\'#\' + tx + \'-all > ul\');
$(\'#publish\').click(function(){
if ($scope.find(\'input:checked\').length > 0) {
alert(\'found\');
return true;
} else {
alert(\'not found\');
return false;
}
});
});
</script>
<?php
});