私はあなたがこれを必要だと思う:<?php checked($checked, $current, $echo); ?>
<?php
// Get an array of options from the database.
$options = get_option('slug_option');
// Get the value of this option.
$checked = $options['self-destruct'];
// The value to compare with (the value of the checkbox below).
$current = 1;
// True by default, just here to make things clear.
$echo = true;
?>
<input name="slug-option[self-destruct]" value="1" <?php checked($checked, $current, $echo); ?>/>
テスト値を()とします。
<input type='checkbox' name='options[postlink]' value='1' <?php if (1 == $options['postlink']) echo 'checked="checked"'; ?> />
チェックを使用して()の代わりに:
<input type="checkbox" name="options[postlink]" value="1" <?php checked($options['postlink'], 1); ?> />
は上を見てみましょう詳細情報のこのリンク:https://codex.wordpress.org/Function_Reference/checked
'' checked '=>' checked''を試みましたか? – jonogilmour
ありがとう、私はこれを投稿する前に試してみました。 – Herb