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 に答える