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;
}