donglei2288 2016-11-29 20: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 20: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条)

报告相同问题?

悬赏问题

  • ¥15 深度学习残差模块模型
  • ¥20 两个不同Subnet的点对点连接
  • ¥50 怎么判断同步时序逻辑电路和异步时序逻辑电路
  • ¥15 差动电流二次谐波的含量Matlab计算
  • ¥15 Can/caned 总线错误问题,错误显示控制器要发1,结果总线检测到0
  • ¥15 C#如何调用串口数据
  • ¥15 MATLAB与单片机串口通信
  • ¥15 L76k模块的GPS的使用
  • ¥15 请帮我看一看数电项目如何设计
  • ¥23 (标签-bug|关键词-密码错误加密)