@嗯,谢谢你的代码,我还不知道这个过滤器。您知道是否也可以通过这种方式添加工具提示吗?
无论如何,我有一个不同的解决方案,可以在此列中添加一个新按钮,还想发布它:
add_action( \'woocommerce_admin_order_actions_end\', \'add_content_to_wcactions_column\' );
function add_content_to_wcactions_column() {
// create some tooltip text to show on hover
$tooltip = __(\'Some tooltip text here.\', \'textdomain\');
// create a button label
$label = __(\'Label\', \'textdomain\');
echo \'<a class="button tips custom-class" href="#" data-tip="\'.$tooltip.\'">\'.$label.\'</a>\';
}
只需替换工具提示和标签文本,并在链接中添加url即可。
我在一个空的安装上测试了上述代码,结果如下: