doudula1974 2019-05-03 20:19
浏览 76
已采纳

提交后从方法刷新当前页面

Okay, I'm new the PHP writing, and i got stuck.

I have this code:

    add_shortcode( 'mycred_take', 'mycred_pro_render_take_shortcode' );
function mycred_pro_render_take_shortcode( $atts, $label = 'Give Away' ) {

    extract( shortcode_atts( array(
        'user_id' => '',
        'confirm' => '',
        'amount'  => '',
        'unique'  => 0,
        'ref'     => 'mycred_take',
        'entry'   => '%plural% lose',
        'ctype'   => 'mycred_default'
    ), $atts ) );

    if ( ! is_user_logged_in() || ! function_exists( 'mycred' ) ) return '';

    if ( $user_id == '' )
        $user_id = get_current_user_id();

    // Load essentials
    $user_id = absint( $user_id );
    $mycred = mycred( $ctype );

    // User is excluded = has no balance
    if ( $mycred->exclude_user( $user_id ) ) return '';

    // Unique check
    if ( $unique == 1 && $mycred->has_entry( $ref, 0, $user_id, '', $ctype ) ) return '';

    $balance = $mycred->get_users_balance( $user_id, $ctype );

    $output = '';

    // If button was pushed
    if ( isset( $_POST['mycred-take-points-token'] ) && wp_verify_nonce( $_POST['mycred-take-points-token'], 'mycred-deduct-points' . $ref . $ctype ) ) {

        // Deduct
        $mycred->add_creds(
            $ref,
            $user_id,
            0 - $amount,
            $entry
        );

        // Update balance
        $balance = $balance - $amount;

    }

    // Too low balance
    if ( $balance < $amount ) return '';

    return $output . '<form action=""  method="post" id="mycred-take-shortcode' . $ref . $ctype . '"><input type="hidden" name="mycred-take-points-token" value="' . wp_create_nonce( 'mycred-deduct-points' . $ref . $ctype ) . '" /><input type="submit"  class="button"  value="' . $label . '" /></form>';
}

It's one Wordpress shortcode. I want after the form submited and the database updated, refresh the page. Since this code is currently down and the page is not updated (if i'm refresh the page manually the database updated, and the changes is appear). I try the onSubmit="window.location.reload()", action="" codes, but doesn't work.

  • 写回答

2条回答 默认 最新

  • du5114 2019-05-04 05:10
    关注

    Hey Meil Helt please try to replace your code with my below code.

    add_action("init","start_ob_start_cb");
    function start_ob_start_cb()
    {
         ob_start();
    }
    
    add_shortcode( 'mycred_take', 'mycred_pro_render_take_shortcode' );
    function mycred_pro_render_take_shortcode( $atts, $label = 'Give Away' ) {
    
        extract( shortcode_atts( array(
            'user_id' => '',
            'confirm' => '',
            'amount'  => '',
            'unique'  => 0,
            'ref'     => 'mycred_take',
            'entry'   => '%plural% lose',
            'ctype'   => 'mycred_default'
        ), $atts ) );
    
        if ( ! is_user_logged_in() || ! function_exists( 'mycred' ) ) return '';
    
        if ( $user_id == '' )
            $user_id = get_current_user_id();
    
        // Load essentials
        $user_id = absint( $user_id );
        $mycred = mycred( $ctype );
    
        // User is excluded = has no balance
        if ( $mycred->exclude_user( $user_id ) ) return '';
    
        // Unique check
        if ( $unique == 1 && $mycred->has_entry( $ref, 0, $user_id, '', $ctype ) ) return '';
    
        $balance = $mycred->get_users_balance( $user_id, $ctype );
    
        $output = '';
    
        // If button was pushed
        if ( isset( $_POST['mycred-take-points-token'] ) && wp_verify_nonce( $_POST['mycred-take-points-token'], 'mycred-deduct-points' . $ref . $ctype ) ) {
    
            // Deduct
            $mycred->add_creds(
                $ref,
                $user_id,
                0 - $amount,
                $entry
            );
    
            // Update balance
            $balance = $balance - $amount;
    wp_redirect(get_permalink()); die();
        }
    
        // Too low balance
        if ( $balance < $amount ) return '';
    
        return $output . '<form action=""  method="post" id="mycred-take-shortcode' . $ref . $ctype . '"><input type="hidden" name="mycred-take-points-token" value="' . wp_create_nonce( 'mycred-deduct-points' . $ref . $ctype ) . '" /><input type="submit"  class="button"  value="' . $label . '" /></form>';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏