我需要在WordPress中创建一个选项页面,允许为同一个键输入多个值。为了让它以我想要的方式工作,我需要对选项表单发送的$ _POST数据进行一些自定义处理。我还需要使用自定义HTML创建“选项”表单,而不是通过“设置API”生成它。
制作选项页面的正常步骤是使用add_options_page()
注册选项页面,注册设置并让WordPress使用do_settings_sections()
为您生成表单。然后,<form>
代码具有属性action="options.php"
。
我的问题是:我可以改变它的工作方式吗?例如,我可以让回调看起来像这样:
<?php
add_options_page(
'My plugin Options',
'My plugin Options',
'administrator',
'MYPLUGIN_plugin_options',
'MYPLUGIN_options'
);
function MYPLUGIN_options()
{
if ( 'update' == $_POST['action'] ) // Do some updating
else // Generate form
}
这会有用吗?这是实现我想要的可接受的方式吗?如果没有,我怎么办呢?我无法在WordPress文档中找到“合法”的方法。也许你们其中一个人找到了它。
答案 0 :(得分:1)
我不知道这是否真的是你正在寻找的答案。该脚本创建了一个插件index.php和parameter-options.php。 index.php添加了一个名为&#34;您的选项 - 页面名称&#34;单击设置选项卡。在那里,您可以通过向表单添加新输入值来管理选项。您应该用您自己的项目名称替换大写的NAMESPACE文本。另外:此脚本未经过测试。
plugindir / yourpluginname / index.php的
/*
Plugin Name: Your options page
Plugin URI: http://www.yourdomain.de
Description: descriptiontext
Author: authorname
Version: v1.0
Author URI: your uri
*/
if( ! function_exists('NAMESPACE_add_admin_menu_items')):
function NAMESPACE_add_admin_menu_items() {
// add parameter options page to wp admin
add_options_page('Your options-pagename', 'Parameter', 'manage_options', 'NAMESPACE-parameter-settings', 'NAMESPACE_display_parameter_options_page');
}
endif;
add_action('admin_menu', 'NAMESPACE_add_admin_menu_items');
if( ! function_exists('NAMESPACE_display_parameter_options_page') ):
function NAMESPACE_display_parameter_options_page() {
require_once 'parameter-options.php';
}
endif;
plugindir / yourpluginname /参数options.php
$aPosts = $_POST;
if( ! empty($aPosts)) {
foreach($aPosts as $cKey => $aPost) {
update_option($cKey, $aPost);
}
}
<div class="wrap nosubsub">
<div class="icon32" id="icon-edit"><br></div>
<h2><?php echo __('Hello, i am the optionspage', 'NAMESPACE'); ?></h2>
<form method="post">
<table class="form-table">
<tbody>
<?php
$aYourOptionsArray = get_option('YourOptionsArray');
?>
<tr valign="top">
<th scope="row" colspan="2"><b><?php echo __('Some Description', 'NAMESPACE'); ?></b></th>
</tr>
<tr valign="top">
<th scope="row"><?php echo __('Value 1', 'NAMESPACE'); ?></th>
<td><input name="YourOptionsArray[value_1]" class="regular-text" type="text" value="<?php echo (isset($aYourOptionsArray['value_1']) ? $aYourOptionsArray['value_1'] : ''); ?>" /></td>
</tr>
<tr valign="top">
<th scope="row"><?php echo __('Value 2', 'NAMESPACE'); ?></th>
<td><input name="YourOptionsArray[value_2]" class="regular-text" type="text" value="<?php echo (isset($aYourOptionsArray['value_2']) ? $aYourOptionsArray['value_2'] : ''); ?>" /></td>
</tr>
<!-- more options here -->
</table>
</form>
</div>