如何在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 );

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: