admin管理员组文章数量:1350011
I'm making a dashboard widget in WordPress to toggle restriction to access the site. The widget is showing if access is restricted or not based on a binary option. In the admin I want to be able to toggle this on/off in the configuration of the widget. It seems like it is running fine without any errors, but $_POST['mycustom_restrict_access']
always returns "on" even though it's not checked, so I cannot change the setting.
function mycustom_add_dashboard_widget() {
wp_add_dashboard_widget(
'mycustom_dashboard_widget',
esc_html__( 'Restrict Access', 'mycustom' ),
'mycustom_dashboard_widget_render',
'mycustom_dashboard_widget_callback'
);
}
add_action( 'wp_dashboard_setup', 'mycustom_add_dashboard_widget' );
function mycustom_dashboard_widget_render() {
$isToggled = get_option( 'mycustom_restrict_access' );
if ($isToggled == 'on') {
echo "<p>ACCESS RESTRICTED</p>";
}
else {
echo "<p>ACCESS NOT RESTRICTED</p>";
}
esc_html_e( "Click 'configure' in the panel header to change this setting.", "wp" );
}
function mycustom_dashboard_widget_callback() {
if (isset($_POST['mycustom_restrict_access'])) {
update_option( 'mycustom_restrict_access', $_POST['mycustom_restrict_access'] );
}
echo "<p><input type='checkbox' name='mycustom_restrict_access'". checked( 1, get_option( 'mycustom_restrict_access' ), false )."> Restrict access.</p>";
}
I'm making a dashboard widget in WordPress to toggle restriction to access the site. The widget is showing if access is restricted or not based on a binary option. In the admin I want to be able to toggle this on/off in the configuration of the widget. It seems like it is running fine without any errors, but $_POST['mycustom_restrict_access']
always returns "on" even though it's not checked, so I cannot change the setting.
function mycustom_add_dashboard_widget() {
wp_add_dashboard_widget(
'mycustom_dashboard_widget',
esc_html__( 'Restrict Access', 'mycustom' ),
'mycustom_dashboard_widget_render',
'mycustom_dashboard_widget_callback'
);
}
add_action( 'wp_dashboard_setup', 'mycustom_add_dashboard_widget' );
function mycustom_dashboard_widget_render() {
$isToggled = get_option( 'mycustom_restrict_access' );
if ($isToggled == 'on') {
echo "<p>ACCESS RESTRICTED</p>";
}
else {
echo "<p>ACCESS NOT RESTRICTED</p>";
}
esc_html_e( "Click 'configure' in the panel header to change this setting.", "wp" );
}
function mycustom_dashboard_widget_callback() {
if (isset($_POST['mycustom_restrict_access'])) {
update_option( 'mycustom_restrict_access', $_POST['mycustom_restrict_access'] );
}
echo "<p><input type='checkbox' name='mycustom_restrict_access'". checked( 1, get_option( 'mycustom_restrict_access' ), false )."> Restrict access.</p>";
}
Share
Improve this question
edited Apr 2 at 8:19
LoicTheAztec
255k24 gold badges399 silver badges446 bronze badges
asked Apr 1 at 20:32
janlindsojanlindso
1,2514 gold badges17 silver badges45 bronze badges
1 Answer
Reset to default 2There are some missing things in your code. In the control callback function (the last one), you need to check for the posted widget ID in the if statement. Then you can check if the checkbox value is posted or not and update the saved value.
Try the following:
function mycustom_add_dashboard_widget() {
wp_add_dashboard_widget(
'mycustom_dashboard_widget',
esc_html__('Restrict Access', 'mycustom'),
'mycustom_dashboard_widget_render_callback',
'mycustom_dashboard_widget_control_callback'
);
}
add_action( 'wp_dashboard_setup', 'mycustom_add_dashboard_widget' );
function mycustom_dashboard_widget_render_callback() {
if ( get_option('mycustom_restrict_access') === 'on' ) {
echo '<p>'.esc_html__('ACCESS RESTRICTED', 'mycustom').'</p>';
} else {
echo '<p>'.esc_html__('ACCESS NOT RESTRICTED', 'mycustom').'</p>';
}
echo '<em>' . esc_html__( "Click 'configure' in the panel header to change this setting.", "mycustom" ) . '</em>';
}
function mycustom_dashboard_widget_control_callback() {
// Check for the posted widget ID
if ( isset($_POST['widget_id']) && $_POST['widget_id'] === 'mycustom_dashboard_widget' ) {
$value = isset($_POST['mycustom_restrict_access']) ? esc_attr($_POST['mycustom_restrict_access']) : '';
update_option( 'mycustom_restrict_access', $value );
}
printf('<p><input type="checkbox" name="mycustom_restrict_access" %s> %s</p>',
checked( 'on', get_option('mycustom_restrict_access'), false ), esc_html__('Restrict access.', 'mycustom') );
}
Now it should work as expected.
版权声明:本文标题:php - WordPress custom dashboard widget with a checkbox control changing the widget display - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872821a2553785.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论