您可以使用will(重新)设置默认选项值来创建另一个函数:
function wpse_91307_set_option_defaults() {
$options = array(
\'ptechsolcopy_notice\' => \'Copyright ©\',
\'ptechsolcopy_reserved\' => \'All Rights Reserved\'
);
foreach ( $options as $option => $default_value ) {
if ( ! get_option( $option ) ) {
add_option( $option, $default_value );
} else {
update_option( $option, $default_value );
}
}
}
然后你可以改变你的
set_copyright_options()
此功能:
function set_copyright_options() {
delete_option( \'ptechsolcopy_notice\' );
delete_option( \'ptechsolcopy_reserved\' );
wpse_91307_set_option_defaults( );
}
当你击中
reset
button,你唯一要做的就是执行
wpse_91307_set_option_defaults()
作用