我正在尝试编辑wordpress主题。
以下是检索类别列表并在下拉菜单中显示的代码部分。
<p>
<label for="entrycat">* <?php _e( "Question category:", "sofa_qanda" ); ?></label>
<?php
$select = wp_dropdown_categories( \'show_option_none=Select&show_count=0&orderby=name&echo=0&hide_empty=0\' );
$select = preg_replace( \'|<select(.*?).*?>|i\', \'<select id="entrycat" name="entrycat" tabindex="4">\', $select );
echo $select;
?>
</p>
I如何从列表中排除特定类别,例如类别id 10。我该怎么做?