我有我的wordpress發展的一個非常奇怪的問題,在wordpress中使用add_action傳遞參數!
在fucntions.php我有以下代碼
//mytheme/functions.php
$arg = "HELP ME";
add_action('admin_menu', 'my_function', 10, 1);
do_action('admin_menu',$arg);
function my_function($arg)
{
echo "the var is:".$arg."<br>";
}
輸出
the var is:HELP ME
the var is:
爲什麼功能重複2次?爲什麼「幫助我」的論點被正確地傳遞並且第二次沒有通過?
我一直在盡全力爲期2天,並在很多地方搜索以找到解決方案,但我沒有運氣。
我想要做的事情很簡單!我只想使用add_action將參數傳遞給函數?
add_action? do_action?它是什麼? – 2011-04-27 07:29:12
@OZ_:這些是一些WordPress預定義函數,請參閱http://codex.wordpress.org/Function_Reference/add_action,謝謝 – ahmed 2011-04-27 09:31:55