我可以使用以下代码填充post author电子邮件:
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;
}
没关系,但我如何填充帖子的meta?meta=imail
我在试着
add_filter(\'gform_field_value_meta_imail\', \'populate_post_meta_imail\');
function populate_post_meta_imail($value){
global $post;
$meta_imail = get_post_meta(\'imail\', $post->post_id);
return $meta_imail;
}
最合适的回答,由SO网友:s_ha_dum 整理而成
你有理由get_post_meta
向后您有:
get_post_meta(\'imail\', $post->post_id);
鉴于,
where you to check the Codex, 它应该是:
get_post_meta( $post_id, $key, $single );
或者您的情况是:
get_post_meta($post->post_id,\'imail\');
这是假设
$post
正确设置,并且正确使用重力形状挂钩。