gpt4 book ai didi

php - 将类、方法和参数传递给 WordPress 函数

转载 作者:行者123 更新时间:2023-12-05 03:50:55 25 4
gpt4 key购买 nike

将页面添加到 WordPress 管理员时,您使用 add_menu_page ,它接受一个可调用的函数/方法。

class Foo
{
public function __construct()
{
add_menu_page($page_title, $menu_title, $capability, $menu_slug, [$this, 'bar'], $icon_url, $position);
}

public function bar(): void
{
echo 'Hello, World!';
}
}

我的问题是,我对如何在 bar 接受/期望参数时将参数传递给它感到有点困惑,例如:

class Foo
{
public function __construct()
{
add_menu_page($page_title, $menu_title, $capability, $menu_slug, [$this, 'bar'], $icon_url, $position);
}

public function bar(string $name = ''): void
{
echo "Hello, {$name}!";
}
}

我尝试了几种不同的方法,但我似乎无法让它发挥作用:

[$this, 'bar', 'Bob']; // Warning: call_user_func_array() expects parameter 1 to be a valid callback, array must have exactly two members in /wp-includes/class-wp-hook.php on line 287

[$this, ['bar', 'Bob']] // Warning: call_user_func_array() expects parameter 1 to be a valid callback, second array member is not a valid method in /wp-includes/class-wp-hook.php on line 287

因此查看该文件的第 287 行,它使用了 call_user_func_array 我认为似乎可以在 $function 参数中传递参数>add_menu_page 但我无法让它工作:

// Avoid the array_slice() if possible.
if ( 0 == $the_['accepted_args'] ) {
$value = call_user_func( $the_['function'] );
} elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args );
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int) $the_['accepted_args'] ) );
}

帮助将不胜感激!

最佳答案

您应该能够传递 anonymous function相反,whos 的主体将使用适当的参数简单地调用 bar 方法。

匿名函数看起来像这样:

function () { $this->bar('Bob'); }

或者,如果您使用的是 PHP 7.4+:

fn() => $this->bar('Bob')

所以,只需将其作为回调传递,如下所示:

add_menu_page(
$page_title,
$menu_title,
$capability,
$menu_slug,
// fn() => $this->bar('Bob'),
function () {
$this->bar('Bob');
},
$icon_url,
$position
);

注意:我对 WordPress 非常陌生,所以这可能不是最合适的方法。

关于php - 将类、方法和参数传递给 WordPress 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63257012/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com