正如@LupuAndrei所说,我们缺乏详细信息,尤其是您调用表单的代码。
但我怀疑,就像卢普安德烈所说的,你可能不会打电话给settings_fields
, do_settings_fields
或do_settings_sections
正确地
在构建表单的函数上,尝试以下操作
<form method="post" action="options.php">
<table class="form-table">
<?php
settings_fields( \'animated-settings-group\' ); // This will output the nonce, action, and option_page fields for a settings page.
do_settings_sections( \'hoogleyboogley_animated\' ); // This prints out the actual sections containing the settings fields for the page in parameter
?>
</table>
<?php submit_button(); ?>
</form>