0

我正在编写一个自定义函数来在 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;
}
4

1 回答 1

2

您可以使用get_post_meta

$app_email=  get_post_meta($post->ID,'app_email-address',true);

WP get_post_meta

于 2013-09-10T06:53:57.447 回答