我正在更新一个已经发布了一段时间的 WordPress 插件,插件“面向未来”的一部分是为了摆脱在插件开始阶段实施的一些劣质命名方案。
我想我会简单地添加一个激活钩子来检查这些名称是否存在,如果存在,只需删除插件选项数组并显示一个通知,让用户知道他们需要再次更新他们的选项,因为我们必须擦洗数据以备将来校对。听起来很容易,嗯?显然不是。
我已经尝试了我能想到的所有可能的方法,无论我做什么,我都无法让 delete_option()、update_option()、add_option() 和 get_option() 在激活钩子中工作。
下面是我的激活钩子是如何设置的示例:
// add activation function to get rid of old options and services
function my_activation_hook() {
global $opts_array;
//Set variable to false before running foreach loop
$needs_update = false;
//Loop through $opts_array['bookmark'] and check for 'badname-' prefix
foreach($opts_array['bookmark'] as $bkmrk) {
if(strpos($bkmrk, 'badname-') !== false) {
//If any have 'badname-' prefix, set variable to true
$needs_update = true;
}
}
//If variable is true, delete options and set to default
if($needs_update === true) {
//Delete the options
unset($opts_array);
delete_option('MyPluginOpts');
//Reset the array to default values
$opts_array = array(
'position' => 'below', // below, above, or manual
'reloption' => 'nofollow', // 'nofollow', or ''
'targetopt' => '_blank', // 'blank' or 'self'
'bgimg-yes' => 'yes', // 'yes' or blank
'mobile-hide' => '', // 'yes' or blank
'bgimg' => 'shr', // default bg image
'shorty' => 'b2l',
'pageorpost' => '',
'bookmark' => array_keys($bookmarks_opts_data), // pulled from bookmarks-data.php
'feed' => '1', // 1 or 0
'expand' => '1',
'autocenter' => '1',
'ybuzzcat' => 'science',
'ybuzzmed' => 'text',
'twittcat' => '',
'tweetconfig' => '${title} - ${short_link}', // Custom configuration of tweet
'defaulttags' => 'blog', // Random word to prevent the Twittley default tag warning
'warn-choice' => '',
'doNotIncludeJQuery' => '',
'custom-mods' => '',
'scriptInFooter' => '1',
'vernum' => 'old', //Set to "old" to trigger update notice
);
add_option('MyPluginOpts', $opts_array); // Store the option to the database wp_options table in a serialized array
$opts_array = get_option('MyPluginOpts');// Now reload the variable with stored options from database
}
}
register_activation_hook(__FILE__, 'my_activation_hook' );