如何在电子邮件中显示ACF的字段或字段键?

时间:2018-09-19 09:34:01

标签: php mysql wordpress woocommerce advanced-custom-fields

我将ACF插件和ACF用于WooCommerce。如果用户Woocommerce更改了其数据,则管理员将收到有关这些更改的电子邮件。

这是完整的代码:

if( !class_exists('WooCommerceNotifyChanges') ){

class WooCommerceNotifyChanges{

function __construct(){
// customer saves main account data
add_action('woocommerce_save_account_details', array( $this, 'woocommerce_send_notification' ), 15, 1 );

}

function woocommerce_send_notification( $user_id ){
$body       = '';
$to         = 'info@domain.com';    //address that will receive this email
$subject    = 'One of your customers has updated their information.';

$user      = new WP_User( $user_id );
$user_name = $user->user_login;

$body .= '<table>';
$body .= '<tr><td><strong>' . __("Account") . '</strong></td></tr>';
$body .= '<tr><td>Username: </td><td>' . $user_name                                         . '</td></tr>';
$body .= '<tr><td>First name: </td><td>' . $user->billing_first_name . '</td></tr>';
$body .= '<tr><td>Last name: </td><td>' . $user->billing_last_name  . '</td></tr>';
$body .= '<tr><td>Phone: </td><td>' . get_field( 'user_phone', "user_{$user_id}" ) . '</td></tr>';
$body .= '<tr><td>Age: </td><td>' . get_field( 'user_age', "user_{$user_id}" ) . '</td></tr>';
$body .= '</table>';    

//set content type as HTML
$headers = array('Content-Type: text/html; charset=UTF-8;');

//send email
if( wp_mail( $to, $subject, $body, $headers ) ){
    //echo 'email sent';
}else{
    //echo 'email NOT sent';                
}
//exit();
}
}
new WooCommerceNotifyChanges(); 
} 

我创建了几个自定义字段,并在用户帐户中显示了这些字段。

在给管理员的电子邮件中,这些字段“ user_phone”和其他字段未显示。

例如,“ ACF for WooCommerce”插件将数据库中的“ user_phone”字段保存为meta_key:“ field_5b7e4f388fd11”和meta_value:“ + 79998006655”。

enter image description here

在我的代码中,该字段显示如下:

get_field( 'user_phone', "user_{$user_id}" )

当我将字段密钥“ field_5b7e4f388fd11”而不是字段名称放入...

get_field( 'field_5b7e4f388fd11', "user_{$user_id}" )

我收到一封空字段的电子邮件。

如何解决此问题?


更新:我可以直接使用get_user_meta:

get_user_meta($user_id, 'field_5b7e4f388fd11', $single=true);

此选项有效,但是如果我用新的“ +78009995566”替换现有字段值(例如“ +79998006655”),则所有内容均正确存储在数据库中,并且旧版本的“ +79998006655”出现了到管理员的电子邮件。

如果自定义字段是一个复选框,则它已正确存储在数据库中,但管理员电子邮件中仅显示“ Array”。

是的,并且发给管理员的电子邮件很长一段时间。

如何补救?

1 个答案:

答案 0 :(得分:0)

不需要添加括号

尝试以下代码:

get_field( 'user_age', "user_$user_id" ) 

更新1:

更多信息,请访问ACF Official docs

ACF文档中的示例

// This example will retrieve a field value from a user with an ID of 1.
$variable = get_field('field_name', 'user_1');

更新2:

尝试一下:

get_field('user_phone','user_'。$ user_id)