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 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据