以重力形式填充贴子Meta

时间:2014-01-25 作者:Vektor Unbreakable

我可以使用以下代码填充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;
}

1 个回复
最合适的回答,由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 正确设置,并且正确使用重力形状挂钩。

结束

相关推荐

列出分类法:如果分类法没有POST,就不要列出分类法--取决于定制的POST-META?

这可能很难解释,我不知道是否有解决办法!?我有一个名为“wr\\u event”的自定义帖子类型和一个名为“event\\u type”的分层自定义分类法。自定义帖子类型有一个元框,用于event_date 并且与此帖子类型关联的所有帖子都按以下方式排序event_date. 我在循环中有一个特殊的条件来查询event_date 已经发生了-在这种情况下,它没有显示,但只列在我的档案中。就像你可以使用wp_list_categories() 我编写了一个自定义函数,它以完全相同的方式列出所有分类术语。现在