如何在WordPress帖子中通过PHP将值传递给自定义字段? 时间:2015-09-14 作者:sandeep arron 假设我有一个函数function mytable(){ $count_value = get_kudos_count( $post_id ); } 如何发送$count_value 动态切换到WordPress post中的自定义字段?假设自定义字段名(键)为custom_count 1 个回复 最合适的回答,由SO网友:Milo 整理而成 You can use update_post_meta:update_post_meta( $post_id, \'custom_count\', $count_value ); 文章导航