donglei2288 2016-11-29 12:07
浏览 22
已采纳

Wordpress:每次发布新帖子时向变量添加1

Is it possible to detect when the post of a member is published ?

I would like to add 1 to a variable each time a new post is published.

if(new_post_of_specific_user_is_published) {
$variable = $variable + 1;
}
  • 写回答

2条回答 默认 最新

  • duanhuan6857 2016-11-29 12:25
    关注

    Store the piggy bank as a user meta and each time the members post a new post use the save_post or save_post_custom_post_type filter to add the user meta.

    add_action( 'save_post_piggy_bank', 'my_function', 10, 2 );
    function my_function($post_id, $post){
        if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return;
        if($post->post_status == 'auto-draft' || $post->post_status == 'trash'){
            return;
        }
    
        $user_id = get_current_user_id();
    
        //get the user's piggy bank
        $piggy_bank_amount = get_user_meta($user_id, 'piggy_bank', true);
    
        //increment their bank by 1
        update_user_meta($user_id, 'piggy_bank', $piggy_bank_amount + 1);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部