我正在使用这个网站http://wpbits.wordpress.com/2007/08/15/adding-options-to-wordpress-plugins/,to帮助我锻炼如何制作一个保存选项的插件。 这是我的代码,但它似乎不起作用。任何人都可以指出我正确的方向:
<?php
/*
* Plugin Name: test
* Plugin URI: www.test.com
* Version: 1.0
* Author: J Davies
* Author URI: test.com
* Description: Random Test
*/
function say_test(){
$greeting = get_option('test_greeting');
print "Say ".$greeting;
}
function set_test_options(){
add_option('test_greeting','test','test');
}
function unset_test_options(){
delete_option('test_greeting');
}
register_activation_hook(__FILE__,'set_test_options');
register_deactivation_hook(__FILE__,'unset_test_options');
?>
答案 0 :(得分:2)
我发现了问题,我需要将每个函数包装在if(function_exists())中。 感谢
答案 1 :(得分:0)
我在这里看到的唯一奇怪的事情是add_option()
应该只有两个或四个参数(空三分之一)。设置第三个导致Wordpress运行其_deprecated_argument()
函数,如果处于调试模式,将触发错误。