我想隐藏出现在 wordpress 管理员自定义页面上的 1/2 列单选按钮,我应该怎么做?(好的,我可以用 javascript 来做,我要求的是原生 wordpress 解决方案)
这就是我说的收音机
这是页面的标记
<div class="wrap">
<?php screen_icon(); ?>
<h2><?php echo $title; ?></h2>
<div id="poststuff">
<form method="post" action="" enctype="multipart/form-data">
<?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
<?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
<div >
<div class="column-1-ai1ec timely">
<?php do_meta_boxes( $settings_page, 'left', null ); ?>
<?php
// Show the submit button only in the settings page and not in the Feeds page.
if ( $calendar_settings ) {
submit_button( esc_attr__( 'Update Settings', AI1EC_PLUGIN_NAME ), 'primary', 'ai1ec_save_settings' );
}
?>
</div>
<div class="column-2-ai1ec timely"><?php do_meta_boxes( $settings_page, 'right', null ); ?></div>
</div>
</form>
</div><!-- #poststuff -->