我对您的以下代码进行了一些更改:
add_action( \'woocommerce_email_before_order_table\', \'add_order_email_instructions\', 20, 4 );
function add_order_email_instructions( $order, $sent_to_admin, $plain_text, $email ) {
if ( $email->id == \'customer_processing_order\' && \'paypal\' == $order->payment_method && ! $sent_to_admin ) {
echo \'my text:\';
}
}
我已检查当前电子邮件是否为customer\\u processing\\u order。我还更改了您的add\\u操作和函数参数,以在函数中获取$email对象,用于检查email if。
希望对你有用!