由于geo mashup只检索post_meta,我试图将geo_location从自定义注册字段复制到包含该地图的页面的元数据中。 我正在使用的代码是:
<?php
$blogusers = get_users_of_blog();
if ($blogusers) {
foreach ($blogusers as $bloguser) {
$user = get_userdata($bloguser->user_id);
$user_location = the_author_meta('geo_address', $user->ID);
add_post_meta( 463, 'geo_move', $user_location);
}}
?>
这会创建post meta,但是该值被写为空白,因此看起来$ user_location不起作用。有什么建议吗?
答案 0 :(得分:0)
答案在这里提交:https://wordpress.stackexchange.com/questions/121713/retrieve-user-meta-and-copy-to-post-meta
我自己回答这个问题并且不浪费任何时间