- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在更新一个已经发布了一段时间的 WordPress 插件,插件“面向 future ”的一部分是摆脱在插件开始阶段实现的一些伪劣命名方案。
我想我会简单地添加一个激活钩子(Hook)来检查这些名称是否存在,如果存在,只需删除插件选项数组并显示一个通知,让用户知道他们需要再次更新他们的选项,因为我们必须擦洗数据以备将来校对。听起来很容易,嗯?显然不是。
我已经尝试了我能想到的所有可能的方法,无论我做什么,我都无法让 delete_option()、update_option()、add_option() 和 get_option() 在激活钩子(Hook)中工作。
下面是我的激活钩子(Hook)是如何设置的示例:
// 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' );
最佳答案
以下代码是我需要在自己的插件中更新一些“伪劣命名方案”时构建的摘要:)
在询问 this question 后,我已经构建了我的解决方案在 WordPress StackExchange 中。完整的线程值得一读。
class MyPlugin {
var $adminOptionsName = "MyPlugin";
function MyPlugin() {
}
function init() {
$this->getAdminOptions();
}
function getAdminOptions() {
// New options and values
$theNewOptions = array(
'option_1' => 0,
'option_2' => '',
'version' => '1.0'
);
// Grab the options in the database
$theOptions = get_option($this->adminOptionsName);
// Check if options need update
if( !isset($theOptions['version']) && !empty($theOptions) ) {
foreach( $theOptions as $key => $value ) {
if( $key == 'not_needed' ) {
unset( $theOptions[$key] );
}
if( $key == 'old_option_1') {
$theOptions['option_1'] = $value;
unset( $theOptions[$key] );
}
// etc...
}
}
// Proceed to the normal Options check
if (!empty($theOptions)) {
foreach ($theOptions as $key => $option) {
$theNewOptions[$key] = $option;
}
}
update_option($this->adminOptionsName, $theNewOptions);
}
}
关于wordpress - add/get/delete/update_option() 在激活钩子(Hook)(wordpress)中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2835826/
问题 我想在可由用户添加的表单中实现输入字段的键/值对。 参见 animated gif on dynamic fields . 此外,我想在用户提交表单并再次显示页面时显示保存的数据。 参见 ani
这个问题已经有答案了: The useState set method is not reflecting a change immediately (19 个回答) 已关闭去年。 问题是,在网页中该
这个问题已经有答案了: The useState set method is not reflecting a change immediately (19 个回答) 已关闭去年。 问题是,在网页中该
我对钩子(Hook)相当陌生,我正在尝试实现一个拖放容器组件,该组件在整个鼠标移动过程中处理 onDragStart、onDrag 和 onDragEnd 函数。我一直在尝试使用钩子(Hook)复制此
有人向我介绍了 CSS 钩子(Hook)这个术语,但我对此不是很清楚。你能给我一些想法吗? 什么是 CSS 钩子(Hook)? 最常见的钩子(Hook)是什么? 使用 CSS 钩子(Hook)的最佳做
文档 ( https://devexpress.github.io/testcafe/documentation/test-api/test-code-structure.html#test-hook
问题是包含 PR_Write() 的 DLL 调用的不是 npsr4.dll,而是 nss3.dll 和 Hook 无法从不存在的库中找到 GetProcAddress()。 我正在尝试创建 Fire
我的 git hook 似乎没有工作。即commit-msg来自 gerrit 的钩子(Hook)。 commit-msg Hook 存在于 /.git/hooks/并具有正确的语法。 最佳答案 确保
用gdb调试不熟悉的程序时,程序执行后经常会意外退出next .发生这种情况时,我通常会设置一个断点,重新运行程序并执行 step而不是 next追踪正在发生的事情。但是,有时很难知道在哪里设置断点。
当我创建一个节点时,我希望它以编程方式创建一些引用刚刚创建的节点的节点。 虽然我只需要更改表单的 form_alter 提交函数来调用自定义函数来创建节点。 检查输出 $form_state 我可以看
我是钩子(Hook)的新手,在学习了对类的 react 之后才来,所以有点迷茫。在下面的代码中,我将 setDog 更改为 Husky,然后它应该告诉 API 调用搜索并获取我的哈士奇图片。但是,尽管
我编写(进程中)钩子(Hook)以防止在本地添加 BAD 标记名称: .hg/hgrc : pretag.badtagname = python:.hg/hgcheck.py:localbadtag
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 7年前关闭。 Improve this qu
如果这个问题之前已经得到解答,我提前表示歉意(对于这篇长文,但我已尽力做到具体)。但是,我找到的答案并不完全令我满意。 我想在我的项目中使用新的令人惊叹的 React Hooks。到目前为止我所做的一
通过阅读一些文字,尤其是关于委托(delegate)的iOS文档,所有协议(protocol)方法都被称为 Hook 自定义委托(delegate)对象需要实现。但是其他一些书,命名为 Hook 作为
我的所有依赖项都位于受密码保护的存储库中。 我有一个要求输入用户名和密码的功能,但它经常困扰我。 有没有办法在依赖检索之前执行它? 在大多数情况下,我在本地 maven/gradle 缓存中拥有所有依
当我尝试运行 git commit -m 'message here' 时出现以下错误。 致命:无法执行 '.git/hooks/prepare-commit-msg':权限被拒绝 当我在我的 ubu
当我尝试运行 git commit -m 'message here' 时出现以下错误。 致命:无法执行 '.git/hooks/prepare-commit-msg':权限被拒绝 当我在我的 ubu
我有一个分支和主干的服务器存储库。分支是所有团队成员的存储库。我正在尝试使用 svn hooks仅在我的分支下的 repo 中,但它似乎无法正常工作。以下是我尝试采取的步骤: checkout my_
我正在尝试为我的模块找到一种在安装时创建 anchor 链接的方法。 我目前的策略是创建一个自定义菜单,类似于主菜单、次菜单等并位于其中。在此菜单中,我希望有一个或多个由我的模块定义的链接。然后我希望
我是一名优秀的程序员,十分优秀!