merhaba arkadaşlar özel bir tema aldım post-view eklentisi ile müdahale edemiyorum function.php dosyasında view aramasında buldugum kodları aşağıdakilerdir.
görüntülenme sayısını *100 kat yapmak için nasıl bir müdahale etmem gerekiyor?


    public static function update_post_views( $post_id ){

       

        $views_key = 'post_views_count'; // The views post meta key
      
        // The current post views count
        $count =  get_post_meta( $post_id, $views_key, true ); 
        if(empty($count))
        {
            $count = 0;
        }
        update_post_meta( $post_id, $views_key, ($count+1) ); 
       

    }

    public static function get_post_view_count($post_id)
    {

        $views =  get_post_meta( $post_id, 'post_views_count', true );
        if(!empty($views))
        {
            if($views == 1)
            {
                $view = ' View';
            }
            else
            {
                $view = ' Views';
            }
            
            echo esc_html( self::number_format_short($views) . $view );    
        }
        else
        {
            echo esc_html__('0 Views','streamlab');    
        }
        
        
    }    public static function update_post_views( $post_id ){

       

        $views_key = 'post_views_count'; // The views post meta key
      
        // The current post views count
        $count =  get_post_meta( $post_id, $views_key, true ); 
        if(empty($count))
        {
            $count = 0;
        }
        update_post_meta( $post_id, $views_key, ($count+1) ); 
       

    }

    public static function get_post_view_count($post_id)
    {

        $views =  get_post_meta( $post_id, 'post_views_count', true );
        if(!empty($views))
        {
            if($views == 1)
            {
                $view = ' View';
            }
            else
            {
                $view = ' Views';
            }
            
            echo esc_html( self::number_format_short($views) . $view );    
        }
        else
        {
            echo esc_html__('0 Views','streamlab');    
        }
        
        
    }