问题描述
我试图在主题选项面板中添加一个新选项,以隐藏/显示主题模板文件中的注释链接。
我可以选择在面板中显示,但有一些错误,它不起作用,没有 php 错误。在下面的主要选项代码中,我已经注意到我已经将选项添加为数组,并将其清理和验证。
底部是根据选项设置显示/隐藏评论链接的 php 。
这是 PHP 的逻辑问题吗?和想法?
主要选项代码:
/**
* Describe the available options
**/
$vertigo_options_template = array(
array(
'name' => __( 'Accent Color', 'vertigo' ),
'desc' => __( 'Change the accent color by entering a HEX color number. (ie: <code>EE3322</code>)', 'vertigo' ),
'id' => 'accent_color',
'std' => 'ee3322',
'type' => 'colorpicker'
),
array(
'name' => __( 'Font', 'vertigo' ),
'desc' => __( 'Enable Hitchcock custom font (Note: this font only supports basic Latin uppercase letters, numerals, and some punctuation.)', 'vertigo' ),
'id' => 'vertigo_font',
'std' => ( '1' == get_option( 'lang_id' ) ) ? 'true' : 'false',
'type' => 'checkbox'
),
/** My new Option **/
array(
'name' => __( 'Comments', 'vertigo' ),
'desc' => __( 'Disable comment links)', 'vertigo' ),
'id' => 'disable_comments_link',
'std' => ( '1' == get_option( 'lang_id' ) ) ? 'true' : 'false',
'type' => 'checkbox'
),
);
/**
* Calculate default option values
*
* @return array
**/
function vertigo_get_default_options() {
global $vertigo_options_template;
$default_options = array();
foreach ( $vertigo_options_template as $option )
$default_options[$option['id']] = $option['std'];
return $default_options;
}
/**
* Create the options form
**/
function vertigo_theme_options_do_page() {
global $vertigo_options_template;
if ( ! isset( $_REQUEST['settings-updated'] ) )
$_REQUEST['settings-updated'] = false;
?>
<div class="wrap">
<?php screen_icon(); echo "<h2>" . get_current_theme() . ' ' . __( 'Theme Options', 'vertigo' ) . "</h2>"; ?>
<?php if ( false !== $_REQUEST['settings-updated'] ) : ?>
<div class="updated fade"><p><strong><?php _e( 'Options saved.', 'vertigo' ); ?></strong></p></div>
<?php endif; ?>
<form method="post" action="options.php">
<?php settings_fields( 'vertigo_options' ); ?>
<?php $vertigo_options = vertigo_get_theme_options(); ?>
<table class="form-table">
<?php foreach ( $vertigo_options_template as $option ) {
// Use default value if no option exists
$value = ( isset ( $vertigo_options[$option['id']] ) && !empty( $vertigo_options[$option['id']] ) ? $vertigo_options[$option['id']] : $option['std'] );
?>
<tr valign="top">
<th scope="row">
<?php echo $option['name']; ?>
</th>
<td>
<?php switch ( $option['type'] ) {
case 'colorpicker':
?>
<input type="text" name="vertigo_theme_options[<?php echo esc_attr( $option['id'] ); ?>]" id="<?php echo esc_attr( $option['id'] ); ?>" value="<?php echo esc_attr( $value ); ?>" class="color { pickerPosition:'right' }" />
<?php break;
case 'checkbox':
?>
<input type="checkbox" name="vertigo_theme_options[<?php echo esc_attr( $option['id'] ); ?>]" id="<?php echo esc_attr( $option['id'] ); ?>" value="true" <?php echo ( 'true' == $value ) ? 'checked="checked"' : ''; ?> />
<?php break;
default:
break;
} // END switch ?>
<label class="description" for="<?php echo esc_attr( $option['id'] ); ?>">
<?php echo $option['desc']; ?>
<?php if ( 'vertigo_font' == $option['id'] ) { ?>
<img src="<?php echo get_template_directory_uri(); ?>/inc/images/hitchcock.gif" alt="Hitchcock" id="hitchcock-sample"/>
<?php } ?>
</label>
</td>
</tr>
<?php } // END foreach ?>
</table>
<p class="submit">
<?php submit_button( __( 'Save Options', 'vertigo' ), 'primary', 'submit', false ); ?>
<?php submit_button( __( 'Reset Options', 'vertigo' ), 'secondary', 'vertigo_theme_options[reset]', false, array( 'id' => 'reset' ) ); ?>
</p>
</form>
</div><!-- .form-wrap -->
<?php
}
/**
* Sanitize and validate form input
*
* @param array options
* @return array sanitized options
**/
function vertigo_theme_options_validate( $input ) {
global $vertigo_options_template;
$defaults = vertigo_get_default_options();
// Check accent color input format
// Valid = hexadecimal 3 or 6 digits
$accent_color = preg_replace( '/[^0-9a-fA-F]/', '', $input['accent_color'] );
if ( 6 == strlen( $accent_color ) || 3 == strlen( $accent_color ) )
$input['accent_color'] = $accent_color;
else
$input['accent_color'] = $defaults['accent_color'];
// Check that Vertigo font checkbox value is either true or false
if ( ! isset( $input['vertigo_font'] ) )
$input['vertigo_font'] = ( $input['vertigo_font'] == 'true' ? 'true' : 'false' );
// My New Option: Check that Disable Comment Links checkbox value is either true or false
if ( ! isset( $input['disable_comments_link'] ) )
$input['disable_comments_link'] = ( $input['disable_comments_link'] == 'true' ? 'true' : 'false' );
// Reset to default options
if ( ! empty( $input['reset'] ) ) {
$defaults = vertigo_get_default_options();
foreach ( $input as $field => $value ) {
if ( isset( $defaults[$field] ) )
$input[$field] = $defaults[$field];
else
unset( $input[$field] );
}
}
return $input;
}
我在我的模板文件中使用这个来显示/隐藏注释模板:
<?php if ( 'true' == $vertigo_theme_options['disable_comments_link'] ) { ?>
<?php comments_template( '', true ); ?>
<?php } ?>
这是 DB 中名为 vertigo_theme_options
的选项:
a:3:{s:12:"accent_color";s:6:"EE3322";s:12:"vertigo_font";s:4:"true";s:21:"disable_comments_link";s:5:"true";}
编辑 7/25/11:这在模板文件中工作; 需要首先调用选项:
<?php $vertigo_theme_options = get_option( 'vertigo_theme_options' ); ?>
<?php if ( 'false' == $vertigo_theme_options['disable_comments_link'] ) { ?>
<?php comments_template( '', true ); ?>
<?php } ?>
最佳解决方案
回答您问题的第一部分:您的设置表已经覆盖了 checkbox
案例; 所以如果你添加一个新的复选框输入,你不需要添加任何东西到交换机。此代码将适用于您添加的所有复选框输入:
case 'checkbox':
?>
<input type="checkbox" name="vertigo_theme_options[<?php echo esc_attr( $option['id'] ); ?>]" id="<?php echo esc_attr( $option['id'] ); ?>" value="true" <?php echo ( 'true' == $value ) ? 'checked="checked"' : ''; ?> />
<?php break;
更多关于 switch
的 PHP.net manual 和 w3schools 。
我有点困惑你的问题的措辞:
I’ve got the option to show up in the panel via the array
与
I’ve noted below… where it appears I need to add it in the “create form” section in the php that builds the form.
那么:新的复选框当前是否显示在 「设置」 页面中,或者不显示?
编辑
由于设置字段在设置表单中正确显示,我将尝试解决以下两个问题:该选项不正确保存,并且该选项无法正确输出。
第一件事情是:根据设置表单字段选择,在数据库中正确保存其值的选项?
如果它不正确保存,那么问题可能是您没有正确检查它。使用复选框,如果未启用复选框,则 POST 数据中将省略整个参数。在这种情况下,为了在 DB 中保存其值,您需要检查正在设置的选项值,例如:
<?php
$vertigo_options['disable_comments_link'] = ( isset( $_POST['disable_comments_link'] ) ? true : false );
?>
注意:您需要调整,但您正在清理表单数据。如果您使用的是设置 API,那么它会更像是这样:
<?php
$output['disable_comments_link'] = ( isset( $input['disable_comments_link'] ) ? true : false );
?>
这是否使我们更接近?
编辑 2
所以我们知道该选项在 DB 中正确保存。现在我们只需要在模板中正确输出。
下一个问题:存储在 DB 中的选项是离散的还是数组?
从您的设置表单标记中,看起来选项存储为数组,因此我们需要在数组上调用 get_option()
,然后使用该数组中的值:
<?php
$vertigo_theme_options = get_option( 'vertigo_options' );
?>
注意:要查找实际的数据库条目名称,请参阅 vertigo_get_theme_options()
函数。你也可以调用这个功能:
<?php
$vertigo_theme_options = vertigo_get_theme_options();
?>
无论如何,现在您应该可以在 $vertigo_theme_options
中参考您的选项; 例如。:
<?php if ( 'true' == $vertigo_theme_options['disable_comments_link'] ) { ?>
<?php comments_template( '', true ); ?>
<?php } ?>
那是否让我们在那里?
编辑 3
option_name under wp_options is vertigo_theme_options
然后尝试这样:
<?php
$vertigo_theme_options = get_option( 'vertigo_theme_options' );
?>
<?php if ( 'true' == $vertigo_theme_options['disable_comments_link'] ) { ?>
<?php comments_template( '', true ); ?>
<?php } ?>
我只有 100%肯定这应该做。
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。