保存wp_Dropdown_Pages()时出现问题

时间:2013-07-01 作者:ColoursB

我真的希望有人能在这里帮助我,我试图让管理员能够选择一个按钮链接到的页面。我已使用。。。

wp_dropdown_pages($args)
。。。我通过…创建参数。。。

$args = array(
  \'echo\'  => 1,
  \'selected\' => $the_link,
  \'name\'  => \'theme_option[the_link]\');
。。。并试图保存生成的值

$input[\'the_link\'] = (int) $input[\'the_link\'];
。。。但到目前为止没有运气。所选选项仅在表单发送后重置,看起来根本没有保存值。有人有什么建议吗?

1 个回复
SO网友:Alessandro Benoit

按以下方式编辑参数:

$args = array(
    \'echo\'      => 1,
    \'selected\'  => $options[\'the_link\'],
    \'name\'      => \'critter_theme_options[the_link]\'
);
未设置名为“theme\\u option”的设置。

结束

相关推荐