我正在使用一个名为 RestroPress 的插件 - 它用于餐厅送货。
我想创建一个脚本,以便在$order_statuses设置为'ready'电子邮件时发送到特定的 WordPress 用户角色。
这是一个示例代码,其中包含我获取此信息的位置:
function rpress_get_order_statuses() {
$order_statuses = array(
'pending' => __( 'Pending', 'restropress' ),
'accepted' => __( 'Accepted', 'restropress' ),
'processing' => __( 'Processing', 'restropress' ),
'ready' => __( 'Ready', 'restropress' ),
'transit' => __( 'In Transit', 'restropress' ),
'cancelled' => __( 'Cancelled', 'restropress' ),
'completed' => __( 'Completed', 'restropress' ),
);
return apply_filters( 'rpress_order_statuses', $order_statuses );
}
关于我如何做到这一点的任何线索?
阿波罗的战车