我有一个复选框,其默认状态未选中:
<?php
function edit_theme_settings() {
if ( get_option('sold_text') == true ) { $display = 'checked'; }
else { $display = ''; }
update_option( 'sold_text', $display );
?>
<input type="checkbox" name="sold_text" id="sold_text" <?php echo get_option('sold_text'); ?> />
我希望在第一次显示表单时取消选中它的默认状态,随后它的“选中”状态应该由 get_option('sold_text') 定义。