我正在编写一个自定义函数来在 wordpress 中以重力形式填充电子邮件字段。我想将每个帖子中存在的自定义字段“app_email-address”称为电子邮件字段。
如果使用以下函数,电子邮件字段将填充作者电子邮件,但我希望电子邮件字段填充 app_email-address。我该怎么做。请帮忙。
add_filter('gform_field_value_author_email', 'populate_post_author_email');
function populate_post_author_email($value){
global $post;
$author_email = get_the_author_meta('email', $post->post_author);
return $author_email;
}