无法调用WordPress插件表单值

时间:2011-08-15 17:40:30

标签: php forms wordpress plugins

我的插件表单代码:

function pp_settings_page() {
    $pp_options = get_option('pp_options');
    ?>
    <div class="wrap">
        <h2>Post Products Settings</h2>
        <form action="options.php" method="post">
            <?php settings_fields('pp_options_group'); ?>
            <table class="form-table">
                <tr valign="top">
                    <th scope="row">Currency sign: </th>
                    <td><input type="text" name="pp_options[currency_sign]" value="<?php echo $pp_options['currency_sign']; ?>" /></td>
                </tr>
            </table>
            <p class="submit">
                <input type="submit" class="button-primary" value="Save changes" />
            </p>
        </form>
    </div>
    <?php
}

我尝试使用以下方法在模板文件中调用它:

<?php $pp_options=get_option('pp_options');?>

<?php get_option('pp_options');?>

我错过了什么?

2 个答案:

答案 0 :(得分:0)

我没有看到任何代码来处理表单提交,更具体地说,是用于提取post变量并使用update_option保存它的代码

答案 1 :(得分:0)

您的操作需要更改为设置页面网址,因此在发布时会运行下一段代码,您可以将其放在pp_settings_page函数中。

if(isset($_POST['field_name'])) {
    $field_value = $_POST['field_name'];
    update_option('option_name', $field_value);
}