每次用户更新其CPT帖子时,奖励都会指向该用户

时间:2016-11-17 作者:Pete

我试图找到一种方法,每次用户更新他们发布的特定cpt帖子时,都会给他们一个积分。积分需要累积。基于这个值,我想得到全局条件,IF user\'s points are greater than X then do this.

1 个回复
SO网友:Ranuka

这个save_post 更新和/或发布帖子时(包括插入新帖子时)触发操作。您也可以将其用于自定义帖子类型。

假设您的CPT是book。

add_action( \'save_book\', \'wpse63478_save\' );
function wpse63478_save() {
        //Your Code to give point to user
}

相关推荐

如何让`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: