Значение по умолчанию не работает автоматически

Привет опытные разработчики плагинов WP, мне нужна помощь. Я применил приведенный ниже код, но не работал по умолчанию и не отображал обновленное уведомление после нажатия кнопки «Сохранить». Когда я помещаю все значения в страницу параметров из панели инструментов, все в порядке. Но не отображаются все обновленные уведомления. Пожалуйста, помогите мне.

<?php
function hkhk_options() {
add_menu_page('Scrol Line Admin Settings', 'hk Settings','manage_options',
'hk_settings', 'hk_admin_options');
}
add_action('admin_menu', 'hkhk_options');function hk_defaults()
{
$hk_options = array(
'back_color' => '#ccc',
);

}
if ( is_admin() ) :

function hk_register_settings () {
register_setting('hkhk_options', 'hk_options', 'hk_validate_options');
}
add_action('admin_init', 'hk_register_settings');

function hk_admin_options() {
global $hk_options;

if ( ! isset( $_REQUEST['updated'] ) )
$_REQUEST['updated'] = false;
?>
<div class="wrap">
<h2>Select Scrol Line Option</h2>
<?php if ( false !== $_REQUEST['updated'] ) : ?>
<div class="update fade"><p><strong><?php _e( 'Options saved' ); ?></strong></p></div>
<?php endif; // If the form has just been submitted, this shows the notification ?><form method="post" action="options.php">
<?php $settings=get_option ( 'hk_options', $hk_options ); ?>
<?php settings_fields('hkhk_options'); ?>
<table class="form-table">
<tr valign="top">
<th scope="row"><label for="back_color"> Back Color </label></th>
<td>
<input id="back_color" type="text" name="hk_options[back_color]" value="<?php esc_attr_e($settings['back_color']); ?>" class="wp-picker-container" /><p class="description"> Choose any color from here for background color. </p>
</td>
</tr>
</table>
<p class="submit"><input type="submit" class="button-primary" value="Save Options" /> </p>
</form>
</div>
<?php
}
function hk_validate_options( $input ){
global $hk_options;
$settings = get_option( 'hk_options', $hk_options );
$input['back_color'] = wp_filter_post_kses( $input['back_color'] );

return $input;
}
endif;
function scrol_line_active() {?>
<?php global $hk_options; $hk_settings = get_option ( 'hk_options', $hk_options ); ?>

<script type="text/javascript">
jQuery(document).ready(function($) {
jQuery("body") .hk({
backColor: "<?php echo $hk_settings['back_color']; ?>",

});
});
</script>
<?php
}
add_action ('wp_head', 'scrol_line_active');
?>

0

Решение

Вы проверяете неверный параметр REQUEST. Вам нужно проверить $_REQUEST['settings-updated'],
При отправке страницы параметров новый URL-адрес аналогичен /wp-admin/admin.php?page=hk_settings&settings-updated=true,

Надеюсь это поможет.

0

Другие решения

Других решений пока нет …

По вопросам рекламы ammmcru@yandex.ru
Adblock
detector