我在WordPress的用户个人资料页面上创建了一些自定义字段。
我设法为用户构建了一个前端编辑器来更改一些电子邮件首选项:
<?php if( isset($_POST['preferences']) ) :
update_field('planner-reminders', $_POST['planner-reminders'], 'user_'.$user_id.'');
update_field('event-suggestions', $_POST['event-suggestions'], 'user_'.$user_id.'');
update_field('woa-updates', $_POST['woa-updates'], 'user_'.$user_id.'');
echo '<p class="success">E-Mail Prefereneces Updated<p>';
endif; ?>
<form action="<?php the_permalink(); ?>" method="POST" class="user-email-settings">
<!-- planner reminders -->
<?php
$field = get_field('planner-reminders', 'user_'.$user_id.'');
if( $field == true ) {
$field = '1';
$checked = true;
}
?>
<input type="checkbox" id="planner-reminders" name="planner-reminders" class="pref"
value="<?php echo $field; ?>" <?php if($checked) :?> checked <?php endif;?> />
<label for="planner-reminders">I don't want to revieve reminders about events I've added to my planner.</label>
<?php $checked = false; ?>
<!-- event suggestions from WOA -->
<?php
$field = get_field('event-suggestions', 'user_'.$user_id.'');
if( $field == true ) {
$field = '1';
$checked = true;
}
?>
<input type="checkbox" id="event-suggestions" name="event-suggestions" class="pref"
value="<?php echo $field; ?>" <?php if($checked) :?> checked <?php endif;?> />
<label for="event-suggestions">I don't want to recieve suggestions about events I may be interested in.</label>
<?php $checked = false; ?>
<!-- updates from WOA -->
<?php
$field = get_field('woa-updates', 'user_'.$user_id.'');
if( $field == true ) {
$field = '1';
$checked = true;
}
?>
<input type="checkbox" id="woa-updates" name="woa-updates" class="pref"
value="<?php echo $field; ?>" <?php if($checked) :?> checked <?php endif;?> />
<label for="woa-updates">I don't want to recieve e-mail updates from What's On Advisor.</label>
<?php $checked = false; ?>
<input type="submit" value="Save Preferences" name="preferences" id="preferences" />
</form>
现在,这实际上似乎有效。如果我更新了一个复选框,它会显示并选中/取消选中,并在前端和后端正确显示。
但是,当我尝试使用wp_query
查询此设置以实际向尚未选择退出的人发送电子邮件时,它会发生一些错误。
如果用户选择退出,然后重新选择,则wp_query不会选择它们。当我进入wp-admin区域并更新其用户配置文件时,它只会选择它们。我实际上不需要改变任何东西,只需打开用户并单击更新。
这是wp_query刚刚加入:
<?php $args = array(
'role' => 'Subscriber',
'meta_key' => 'planner-reminders',
'meta_value' => '0',
'meta_compare' => '=='
); ?>
<?php $user_query = new WP_User_Query( $args ); ?>
<?php if ( ! empty( $user_query->results ) ) : ?>
etc.
etc.
我有什么想法可以让它正常工作?是否有功能伪造点击wp-admin中的“更新用户”按钮?
感谢。
答案 0 :(得分:6)
当用户选择退出时,$field
值将为空,因此复选框的value
- 属性将为空。我还没有对它进行全面测试,但这会在您的设置中产生意外行为。当通过POST请求提交带有未选中复选框的表单时,将不会在$_POST
数组中设置复选框名称,这就是为什么在这种情况下应设置value
- 属性的原因。复选框为“1”,因此通过update_field
正确存储。
您是否可以尝试将上面发布的代码中的复选框值更改为“1”以获取复选框输入元素?那将是value="1"
而不是value="<?php echo $field; ?>"
。
为了防止为不存在的数组键生成PHP通知,我建议将update_field('planner-reminders', $_POST['planner-reminders'], 'user_'.$user_id.'');
更改为update_field('planner-reminders', empty( $_POST['planner-reminders'] ) ? '0' : '1', 'user_'.$user_id.'');
。