Joe*_*ggs 2 php wordpress author woocommerce hook-woocommerce
我正在努力找出如何从 Woocommerce 获取产品作者的电子邮件地址。
我正在尝试这个:
<?php
global $post, $product;
$author_email = get_the_author_meta( 'email', $product->post->post_author );
return $author_email;
?>
Run Code Online (Sandbox Code Playgroud)
但这似乎不正确
正确的元user_email不是email
<?php
global $post, $product;
$author_email = get_the_author_meta( 'user_email', $product->post->post_author );
return $author_email;
?>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3523 次 |
| 最近记录: |