Skip Navigation

[Resolved] Sum filesize of all images attached to a certain post type

This support ticket is created 3 years, 5 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

Tagged: 

This topic contains 16 replies, has 3 voices.

Last updated by Lara 3 years, 5 months ago.

Assisted by: Waqar.

Author
Posts
#1797351

Tell us what you are trying to do?

I try to sum up the filesizes of all images attached to a certain post type of the currently logged-in user. The images stem from a repeating image field... It should only output posts, when the custom select field "rask-welches-journal-termine" has the value 6

add_shortcode( 'filesize_sum_user', 'calc_func' );

function calc_func( $atts ){
   
// get all Posts of your type
        $all_posts = get_posts(array(
            'numberposts'   => -1,
            'post_type'     => 'rask',
            'author' => $current_user->ID,
            'meta_query' => array(
                array(
                       'key'   => 'rask-welches-journal-termine',
                       'value' => '6',
                      )
                                  )

            )
        );
   
//if it returns some posts
        if( $all_posts ){
  
            //Start the count on 0
        $single_posts_value_sum = 0;

  
            //now get the single posts fields values 
            foreach( $all_posts as $single_post ){ 
   
                //get each Posts post data
                $single_post_data = get_post($single_post);
                //get each ID
                $single_post_id = $single_post_data->ID;
                                //get each posts field value
              
         
  $value_images_array = get_post_meta($post->ID,'wpcf-rask-bilder', false);
  foreach($value_images_array as $value_images){
    
   $image_filesize_sum = 0;
    
   $image_filesize = filesize( get_attached_file( $atts['attachment_id'] )
   $image_filesize_sum+= $image_filesize; 
                              
    }

   
       //we need to sum this up BEFORE the if is closed and BEFORE the foreach is closed
                //Sum the values all posts fields
                $single_posts_value_sum+= $image_filesize_sum; 
           
            }               
        }
return size_format($single_posts_value_sum); //return summed value
}
   

Is there any documentation that you are following?
https://toolset.com/forums/topic/sum-of-fields-in-a-view-2/
https://toolset.com/forums/topic/displaying-type-and-size-of-media-post-in-views/
https://toolset.com/forums/topic/display-the-file-name-of-uploaded-pdf-files-and-the-link-in-a-different-tab/

Is there a similar example that we can see?

What is the link to your site?
hidden link

#1799363

I try to sum up the filesizes of all images and all videos attached to a certain post type of the currently logged-in user. The images and the videos stem from a repeating image field and from a repeating video field ... It should only output posts, when the custom select field "rask-welches-journal-termine" has the value 6

It should output something like:
'You already used ' . $single_posts_value_sum_KB . ' KB of your allowed memory.'
I try to prevent, that the user of my website abuse my memory through uploading unlimited videos and pictures. I also thought about changing it in a way, that only the number will be returned ($single_posts_value_sum_KB) and then use it in conditionals to prevent further picture and video uploads, if the user exceed his/her limit.

I changed the code into ...

add_shortcode( 'filesize_sum_user', 'calc_func' );

function calc_func( $atts ){
   
// get all Posts of your type
        $all_posts = get_posts(array(
            'numberposts'   => -1,
            'post_type'     => 'rask',
            'author' => $current_user->ID,
            'meta_query' => array(
                array(
                       'key'   => 'rask-welches-journal-termine',
                       'value' => '6',
                      )
                                  )

            )
        );
   
//if it returns some posts
        if( $all_posts ){
  
            //Start the count on 0
        $single_posts_value_sum = 0;

  
            //now get the single posts fields values 
            foreach( $all_posts as $single_post ){ 
   
                //get each Posts post data
                $single_post_data = get_post($single_post);
                //get each ID
                $single_post_id = $single_post_data->ID;
                                //get each posts field value
              

              
//Custom Field A                 
              
              
$value_images_array_a = get_post_meta($post->ID,'wpcf-rask-bilder', false);
$image_filesize_sum_a = 0;
              
foreach($value_images_array_a as $value_images_a){
    
//URL of the remote file that you want to get
//the file size of. 
$remoteFile_a = $atts['file_url'];
  
//Get the header response for the file in question.
$headers_a = get_headers($remoteFile_a, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_a = array_change_key_case($headers);

//Set to -1 by default.
$fileSize_a = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_a['content-length'])){
    $fileSize_a = $headers_a['content-length'];
}
    

   $image_filesize_sum_a+= $filesize_a; 
                              
    }


              
//Sum the values all posts fields
$single_posts_value_sum+= $image_filesize_sum_a; 
              
              
              
              
              
//Custom Field B              
              
$value_images_array_b = get_post_meta($post->ID,'wpcf-rask-video', false);
$image_filesize_sum_b = 0;
              
foreach($value_images_array_b as $value_images_b){
    
//URL of the remote file that you want to get
//the file size of. 
$remoteFile_b = $atts['file_url'];
  
//Get the header response for the file in question.
$headers_b = get_headers($remoteFile_b, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_b = array_change_key_case($headers);

//Set to -1 by default.
$fileSize_b = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_b['content-length'])){
    $fileSize_b = $headers_b['content-length'];
}
    

   $image_filesize_sum_b+= $filesize_b; 
                              
    }              
              
              
   
//we need to sum this up BEFORE the if is closed and BEFORE the foreach is closed

//Sum the values all posts fields
$single_posts_value_sum+= $image_filesize_sum_b; 
           
            }               
        }
  
//Convert it into KB
$single_posts_value_sum_KB = round($single_posts_value_sum / 1024);
 
return 'You already used ' . $single_posts_value_sum_KB . ' KB of your allowed memory.';
  
}

It does no longer produce an error message, but it outputs nothing ...

#1799455

Hello, if the custom select field was created in Types, the field slug must include "wpcf-" in your code here:

'key'   => 'wpcf-rask-welches-journal-termine',

Beyond that, we would need to turn on debugging and add some debug information into the logs to see what is going on. If you're not familiar with debug logging, I can show you how to activate a log temporarily. Go in your wp-config.php file and look for

define('WP_DEBUG', false);

Change it to:

define('WP_DEBUG', true);

Then add these lines, just after the WP_DEBUG line:

define('WP_DEBUG_LOG', dirname(__FILE__) . '/error_log.txt');
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
define('WP_DISABLE_FATAL_ERROR_HANDLER',true);

Then you can add error_log statements in your code to help monitor execution. For example:

function calc_func( $atts ){
    
// get all Posts of your type
        $all_posts = get_posts(array(
            'numberposts'   => -1,
            'post_type'     => 'rask',
            'author' => $current_user->ID,
            'meta_query' => array(
                array(
                       'key'   => 'wpcf-rask-welches-journal-termine',
                       'value' => '6',
                      )
                                  )
 
            )
        );
error_log('printing all posts: ' );
error_log(print_r($all_posts, true));

Then you would find logged information in an error_log.txt file in the root of your site after the shortcode is executed.

#1800211

Many thanks Christian.

After I changed ... in the way you suggested ....

'key'   => 'wpcf-rask-welches-journal-termine',

... it started to "execute" the code and the next two problems surfaced ...

I received the following error notice:

"Invalid argument supplied for foreach() on line 45 and on line 86 .." ....

foreach($value_images_array_a as $value_images_a)
foreach($value_images_array_b as $value_images_b)
#1800373

It means that $post-ID is not a valid post reference in the get_post_meta call. Your code does not specify the $post variable anywhere as far as I can tell.

$value_images_array_a = get_post_meta($post->ID,'wpcf-rask-bilder', false);

Maybe you meant $single_post_id instead of $post->ID here?

#1800629

Ups, yes you are right. I meant $single_post_id instead of $post->ID ...
I adjusted the code and also added the following ....

extract( shortcode_atts( array('file_url_a' => '',), $atts ) );
extract( shortcode_atts( array('file_url_b' => '',), $atts ) );

Because it complained, that I forgot to specify, where the "file_url" comes from..

Now I have to questions:
1. Can I change it in a way that ...

$value_images_array_a = get_post_meta($single_post_id,'wpcf-rask-bilder', false);
$value_images_array_b = get_post_meta($single_post_id,'wpcf-rask-video', false);

... also will be extracted from the shortcode? Or is it too complicated?

2. Not all of those posts have images and videos attached. Unfortunatelly get_headers() is not allowed to be empty. Can you suggest an easy way, how I could change it in a way, that it will only executed, if it's not empty?

The adjusted code snipped:

add_shortcode( 'filesize_sum_user', 'calc_func' );

function calc_func( $atts ){
   
// get all Posts of your type
        $all_posts = get_posts(array(
            'numberposts'   => -1,
            'post_type'     => 'rask',
            'author' => $current_user->ID,
            'meta_query' => array(
                array(
                       'key'   => 'wpcf-rask-welches-journal-termine',
                       'value' => '6',
                      )
                                  )

            )
        );
   
//if it returns some posts
        if( $all_posts ){
  
            //Start the count on 0
        $single_posts_value_sum = 0;

  
            //now get the single posts fields values 
            foreach( $all_posts as $single_post ){ 
   
                //get each Posts post data
                $single_post_data = get_post($single_post);
                //get each ID
                $single_post_id = $single_post_data->ID;
                                //get each posts field value
              

              
//Custom Field A      

extract( shortcode_atts( array('file_url_a' => '',), $atts ) );
              
              
$value_images_array_a = get_post_meta($single_post_id,'wpcf-rask-bilder', false);
$image_filesize_sum_a = 0;
              
foreach($value_images_array_a as $value_images_a){
    
//URL of the remote file that you want to get
//the file size of. 
$remoteFile_a = $atts['file_url_a'];
  
//Get the header response for the file in question.
$headers_a = get_headers($remoteFile_a, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_a = array_change_key_case($headers);

//Set to -1 by default.
$fileSize_a = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_a['content-length'])){
    $fileSize_a = $headers_a['content-length'];
}
    

   $image_filesize_sum_a+= $filesize_a; 
                              
    }


              
//Sum the values all posts fields
$single_posts_value_sum+= $image_filesize_sum_a; 
              
              
              
              
              
//Custom Field B    
              
extract( shortcode_atts( array('file_url_b' => '',), $atts ) );              
              
$value_images_array_b = get_post_meta($single_post_id,'wpcf-rask-video', false);
$image_filesize_sum_b = 0;
              
foreach($value_images_array_b as $value_images_b){
    
//URL of the remote file that you want to get
//the file size of. 
$remoteFile_b = $atts['file_url_b'];
  
//Get the header response for the file in question.
$headers_b = get_headers($remoteFile_b, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_b = array_change_key_case($headers);

//Set to -1 by default.
$fileSize_b = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_b['content-length'])){
    $fileSize_b = $headers_b['content-length'];
}
    

   $image_filesize_sum_b+= $filesize_b; 
                              
    }              
              
              
   
//we need to sum this up BEFORE the if is closed and BEFORE the foreach is closed

//Sum the values all posts fields
$single_posts_value_sum+= $image_filesize_sum_b; 
           
            }               
        }
  
//Convert it into KB
$single_posts_value_sum_KB = round($single_posts_value_sum / 1024);
 
return 'You already used ' . $single_posts_value_sum_KB . ' KB of your allowed memory.';
  
}

The adjusted shortcode:

[filesize_sum_user file_url_a="[types field='rask-bilder' output='raw' link='true'][/types]" file_url_b="[types field='rask-video' output='raw' link='true'][/types]"]
#1800699

1. Can I change it in a way that ...wpcf-rask-bilder and wpcf-rask-video ... also will be extracted from the shortcode? Or is it too complicated?
I'm not sure I understand. Do you want to pass the field slugs into the shortcode as shortcode attributes, or pass in the array produced by get_post_meta as a shortcode attribute? Or you want to output the arrays when you return a value from the shortcode? A little more info please.

Can you suggest an easy way, how I could change it in a way, that it will only executed, if it's not empty?
Would checking if the variable is set be helpful here?

if(isset($remoteFile_a) ) {
  $headers_a = get_headers($remoteFile_a, 1);
  // ... your code using the headers continues here
}

I'm not sure offhand what to expect from the variable, but this is a first guess.

#1800991

Sorry, I made an error in reasoning. The updated code below. Still not working. $value_images_a need to be the url of the image and not the value of the image. The same applies for and $value_images_b. There it has to be the url of the video instead of the value of the video.

Error Log

[05-Oct-2020 21:37:56 UTC] PHP Notice:  Undefined variable: current_user in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 18
[05-Oct-2020 21:37:56 UTC] PHP Notice:  Trying to get property 'ID' of non-object in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 18
[05-Oct-2020 21:37:56 UTC] printing all posts: 
[05-Oct-2020 21:37:56 UTC] Array
(
    [0] => WP_Post Object
        (
            [ID] => 14951
            [post_author] => 106
            [post_date] => 2020-10-05 02:14:45
            [post_date_gmt] => 2020-10-05 00:14:45
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-14
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-05 02:14:45
            [post_modified_gmt] => 2020-10-05 00:14:45
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [1] => WP_Post Object
        (
            [ID] => 14910
            [post_author] => 106
            [post_date] => 2020-10-03 23:17:08
            [post_date_gmt] => 2020-10-03 21:17:08
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-7
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-03 23:17:08
            [post_modified_gmt] => 2020-10-03 21:17:08
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [2] => WP_Post Object
        (
            [ID] => 14850
            [post_author] => 132
            [post_date] => 2020-10-02 00:17:39
            [post_date_gmt] => 2020-10-01 22:17:39
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-10
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-02 00:17:39
            [post_modified_gmt] => 2020-10-01 22:17:39
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [3] => WP_Post Object
        (
            [ID] => 14841
            [post_author] => 106
            [post_date] => 2020-10-01 22:39:19
            [post_date_gmt] => 2020-10-01 20:39:19
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-9
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 22:39:19
            [post_modified_gmt] => 2020-10-01 20:39:19
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [4] => WP_Post Object
        (
            [ID] => 14837
            [post_author] => 106
            [post_date] => 2020-10-01 16:39:16
            [post_date_gmt] => 2020-10-01 14:39:16
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-8
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 16:39:16
            [post_modified_gmt] => 2020-10-01 14:39:16
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [5] => WP_Post Object
        (
            [ID] => 14821
            [post_author] => 106
            [post_date] => 2020-10-01 01:29:58
            [post_date_gmt] => 2020-09-30 23:29:58
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-7
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 01:29:58
            [post_modified_gmt] => 2020-09-30 23:29:58
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [6] => WP_Post Object
        (
            [ID] => 14777
            [post_author] => 106
            [post_date] => 2020-10-01 01:16:34
            [post_date_gmt] => 2020-09-30 23:16:34
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-6
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 01:16:34
            [post_modified_gmt] => 2020-09-30 23:16:34
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [7] => WP_Post Object
        (
            [ID] => 14523
            [post_author] => 106
            [post_date] => 2020-09-22 13:11:36
            [post_date_gmt] => 2020-09-22 11:11:36
            [post_content] => 
            [post_title] => CRED Auto Draft 190edf631d0684e7b748d192e22b06ee
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-190edf631d0684e7b748d192e22b06ee
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-22 13:11:36
            [post_modified_gmt] => 2020-09-22 11:11:36
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [8] => WP_Post Object
        (
            [ID] => 14438
            [post_author] => 106
            [post_date] => 2020-09-21 13:14:14
            [post_date_gmt] => 2020-09-21 11:14:14
            [post_content] => 
            [post_title] => CRED Auto Draft 71add1da4fe5315b3e07cc760cabece0
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-71add1da4fe5315b3e07cc760cabece0-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-22 13:12:32
            [post_modified_gmt] => 2020-09-22 11:12:32
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [9] => WP_Post Object
        (
            [ID] => 14400
            [post_author] => 106
            [post_date] => 2020-09-20 19:26:40
            [post_date_gmt] => 2020-09-20 17:26:40
            [post_content] => 
            [post_title] => CRED Auto Draft 5369e5192072b49b6bc9d51214bd4206
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-5369e5192072b49b6bc9d51214bd4206-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-20 19:26:40
            [post_modified_gmt] => 2020-09-20 17:26:40
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [10] => WP_Post Object
        (
            [ID] => 14388
            [post_author] => 106
            [post_date] => 2020-09-19 19:12:32
            [post_date_gmt] => 2020-09-19 17:12:32
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:12:32
            [post_modified_gmt] => 2020-09-19 17:12:32
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [11] => WP_Post Object
        (
            [ID] => 14387
            [post_author] => 106
            [post_date] => 2020-09-19 19:11:28
            [post_date_gmt] => 2020-09-19 17:11:28
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:11:28
            [post_modified_gmt] => 2020-09-19 17:11:28
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [12] => WP_Post Object
        (
            [ID] => 14386
            [post_author] => 106
            [post_date] => 2020-09-19 19:10:06
            [post_date_gmt] => 2020-09-19 17:10:06
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:10:06
            [post_modified_gmt] => 2020-09-19 17:10:06
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [13] => WP_Post Object
        (
            [ID] => 14143
            [post_author] => 106
            [post_date] => 2020-09-19 19:09:35
            [post_date_gmt] => 2020-09-19 17:09:35
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:09:35
            [post_modified_gmt] => 2020-09-19 17:09:35
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [14] => WP_Post Object
        (
            [ID] => 14365
            [post_author] => 106
            [post_date] => 2020-09-19 01:09:00
            [post_date_gmt] => 2020-09-18 23:09:00
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-15
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 01:09:00
            [post_modified_gmt] => 2020-09-18 23:09:00
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [15] => WP_Post Object
        (
            [ID] => 14364
            [post_author] => 106
            [post_date] => 2020-09-19 01:05:24
            [post_date_gmt] => 2020-09-18 23:05:24
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-14
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 01:05:50
            [post_modified_gmt] => 2020-09-18 23:05:50
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [16] => WP_Post Object
        (
            [ID] => 14344
            [post_author] => 106
            [post_date] => 2020-09-19 00:59:40
            [post_date_gmt] => 2020-09-18 22:59:40
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-13
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 00:59:40
            [post_modified_gmt] => 2020-09-18 22:59:40
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [17] => WP_Post Object
        (
            [ID] => 14360
            [post_author] => 106
            [post_date] => 2020-09-18 18:30:57
            [post_date_gmt] => 2020-09-18 16:30:57
            [post_content] => 
            [post_title] => CRED Auto Draft d0807bc4e957eaf05d005b49a262c520
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-d0807bc4e957eaf05d005b49a262c520
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-18 18:30:57
            [post_modified_gmt] => 2020-09-18 16:30:57
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [18] => WP_Post Object
        (
            [ID] => 14331
            [post_author] => 106
            [post_date] => 2020-09-17 17:55:06
            [post_date_gmt] => 2020-09-17 15:55:06
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-10
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-17 17:55:06
            [post_modified_gmt] => 2020-09-17 15:55:06
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [19] => WP_Post Object
        (
            [ID] => 14201
            [post_author] => 106
            [post_date] => 2020-09-14 12:30:15
            [post_date_gmt] => 2020-09-14 10:30:15
            [post_content] => 
            [post_title] => CRED Auto Draft ddd386d5db0dcaf2b363dbfab4e77bf1
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-ddd386d5db0dcaf2b363dbfab4e77bf1-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-14 12:30:15
            [post_modified_gmt] => 2020-09-14 10:30:15
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [20] => WP_Post Object
        (
            [ID] => 14187
            [post_author] => 106
            [post_date] => 2020-09-14 12:26:00
            [post_date_gmt] => 2020-09-14 10:26:00
            [post_content] => 
            [post_title] => CRED Auto Draft ddd386d5db0dcaf2b363dbfab4e77bf1
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-ddd386d5db0dcaf2b363dbfab4e77bf1
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-14 12:26:00
            [post_modified_gmt] => 2020-09-14 10:26:00
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [21] => WP_Post Object
        (
            [ID] => 14126
            [post_author] => 106
            [post_date] => 2020-09-12 12:34:42
            [post_date_gmt] => 2020-09-12 10:34:42
            [post_content] => 
            [post_title] => CRED Auto Draft f10361a6c1869d1cf02ee016aae23dec
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-f10361a6c1869d1cf02ee016aae23dec-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-12 12:34:42
            [post_modified_gmt] => 2020-09-12 10:34:42
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [22] => WP_Post Object
        (
            [ID] => 14057
            [post_author] => 106
            [post_date] => 2020-09-11 01:22:42
            [post_date_gmt] => 2020-09-10 23:22:42
            [post_content] => 
            [post_title] => CRED Auto Draft 33f706dc59ba35c4ced326f97b3e830a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-33f706dc59ba35c4ced326f97b3e830a-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-11 01:23:11
            [post_modified_gmt] => 2020-09-10 23:23:11
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [23] => WP_Post Object
        (
            [ID] => 14053
            [post_author] => 106
            [post_date] => 2020-09-11 01:22:18
            [post_date_gmt] => 2020-09-10 23:22:18
            [post_content] => 
            [post_title] => CRED Auto Draft 33f706dc59ba35c4ced326f97b3e830a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-33f706dc59ba35c4ced326f97b3e830a
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-11 01:22:18
            [post_modified_gmt] => 2020-09-10 23:22:18
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [24] => WP_Post Object
        (
            [ID] => 13928
            [post_author] => 106
            [post_date] => 2020-09-08 13:38:08
            [post_date_gmt] => 2020-09-08 11:38:08
            [post_content] => 
            [post_title] => CRED Auto Draft e1a3aba508a5a858f09731376c68aee9
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e1a3aba508a5a858f09731376c68aee9-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-08 13:40:08
            [post_modified_gmt] => 2020-09-08 11:40:08
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [25] => WP_Post Object
        (
            [ID] => 13925
            [post_author] => 106
            [post_date] => 2020-09-08 13:32:28
            [post_date_gmt] => 2020-09-08 11:32:28
            [post_content] => 
            [post_title] => CRED Auto Draft e1a3aba508a5a858f09731376c68aee9
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e1a3aba508a5a858f09731376c68aee9-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-08 13:32:28
            [post_modified_gmt] => 2020-09-08 11:32:28
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [26] => WP_Post Object
        (
            [ID] => 13713
            [post_author] => 50
            [post_date] => 2020-09-02 10:49:42
            [post_date_gmt] => 2020-09-02 08:49:42
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:49:42
            [post_modified_gmt] => 2020-09-02 08:49:42
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [27] => WP_Post Object
        (
            [ID] => 13712
            [post_author] => 50
            [post_date] => 2020-09-02 10:48:58
            [post_date_gmt] => 2020-09-02 08:48:58
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:48:58
            [post_modified_gmt] => 2020-09-02 08:48:58
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [28] => WP_Post Object
        (
            [ID] => 13710
            [post_author] => 50
            [post_date] => 2020-09-02 10:48:07
            [post_date_gmt] => 2020-09-02 08:48:07
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:48:07
            [post_modified_gmt] => 2020-09-02 08:48:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [29] => WP_Post Object
        (
            [ID] => 13675
            [post_author] => 106
            [post_date] => 2020-09-02 02:08:17
            [post_date_gmt] => 2020-09-02 00:08:17
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-23
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 02:08:17
            [post_modified_gmt] => 2020-09-02 00:08:17
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [30] => WP_Post Object
        (
            [ID] => 13647
            [post_author] => 106
            [post_date] => 2020-09-01 15:54:47
            [post_date_gmt] => 2020-09-01 13:54:47
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-5
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:54:47
            [post_modified_gmt] => 2020-09-01 13:54:47
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [31] => WP_Post Object
        (
            [ID] => 13646
            [post_author] => 106
            [post_date] => 2020-09-01 15:52:04
            [post_date_gmt] => 2020-09-01 13:52:04
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:52:04
            [post_modified_gmt] => 2020-09-01 13:52:04
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [32] => WP_Post Object
        (
            [ID] => 13645
            [post_author] => 106
            [post_date] => 2020-09-01 15:48:53
            [post_date_gmt] => 2020-09-01 13:48:53
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:48:53
            [post_modified_gmt] => 2020-09-01 13:48:53
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [33] => WP_Post Object
        (
            [ID] => 13644
            [post_author] => 106
            [post_date] => 2020-09-01 15:46:52
            [post_date_gmt] => 2020-09-01 13:46:52
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:48:05
            [post_modified_gmt] => 2020-09-01 13:48:05
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [34] => WP_Post Object
        (
            [ID] => 13642
            [post_author] => 106
            [post_date] => 2020-09-01 15:45:01
            [post_date_gmt] => 2020-09-01 13:45:01
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:45:50
            [post_modified_gmt] => 2020-09-01 13:45:50
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [35] => WP_Post Object
        (
            [ID] => 13616
            [post_author] => 106
            [post_date] => 2020-09-01 04:10:41
            [post_date_gmt] => 2020-09-01 02:10:41
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-18
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 04:10:41
            [post_modified_gmt] => 2020-09-01 02:10:41
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [36] => WP_Post Object
        (
            [ID] => 13615
            [post_author] => 106
            [post_date] => 2020-09-01 04:10:07
            [post_date_gmt] => 2020-09-01 02:10:07
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-17
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 04:10:07
            [post_modified_gmt] => 2020-09-01 02:10:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [37] => WP_Post Object
        (
            [ID] => 13600
            [post_author] => 106
            [post_date] => 2020-09-01 03:22:17
            [post_date_gmt] => 2020-09-01 01:22:17
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 02:54:07
            [post_modified_gmt] => 2020-09-02 00:54:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [38] => WP_Post Object
        (
            [ID] => 13599
            [post_author] => 106
            [post_date] => 2020-09-01 03:21:37
            [post_date_gmt] => 2020-09-01 01:21:37
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 03:21:37
            [post_modified_gmt] => 2020-09-01 01:21:37
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [39] => WP_Post Object
        (
            [ID] => 13553
            [post_author] => 106
            [post_date] => 2020-09-01 03:00:24
            [post_date_gmt] => 2020-09-01 01:00:24
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 03:00:24
            [post_modified_gmt] => 2020-09-01 01:00:24
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [40] => WP_Post Object
        (
            [ID] => 13202
            [post_author] => 106
            [post_date] => 2020-08-20 00:08:29
            [post_date_gmt] => 2020-08-19 22:08:29
            [post_content] => 
            [post_title] => CRED Auto Draft 7aa96aa23abb9443d71b77c9fafce273
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-7aa96aa23abb9443d71b77c9fafce273
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-20 00:08:29
            [post_modified_gmt] => 2020-08-19 22:08:29
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [41] => WP_Post Object
        (
            [ID] => 13198
            [post_author] => 106
            [post_date] => 2020-08-18 03:43:45
            [post_date_gmt] => 2020-08-18 01:43:45
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:43:45
            [post_modified_gmt] => 2020-08-18 01:43:45
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [42] => WP_Post Object
        (
            [ID] => 13197
            [post_author] => 106
            [post_date] => 2020-08-18 03:43:26
            [post_date_gmt] => 2020-08-18 01:43:26
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:43:26
            [post_modified_gmt] => 2020-08-18 01:43:26
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [43] => WP_Post Object
        (
            [ID] => 13192
            [post_author] => 106
            [post_date] => 2020-08-18 03:42:13
            [post_date_gmt] => 2020-08-18 01:42:13
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:42:13
            [post_modified_gmt] => 2020-08-18 01:42:13
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

)

[05-Oct-2020 21:37:56 UTC] PHP Notice:  Undefined variable: filesize_b in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 126
[05-Oct-2020 21:37:56 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:56 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:56 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:56 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:57 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:57 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:57 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:57 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:57 UTC] PHP Notice:  Undefined variable: current_user in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 18
[05-Oct-2020 21:37:57 UTC] PHP Notice:  Trying to get property 'ID' of non-object in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 18
[05-Oct-2020 21:37:57 UTC] printing all posts: 
[05-Oct-2020 21:37:57 UTC] Array
(
    [0] => WP_Post Object
        (
            [ID] => 14951
            [post_author] => 106
            [post_date] => 2020-10-05 02:14:45
            [post_date_gmt] => 2020-10-05 00:14:45
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-14
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-05 02:14:45
            [post_modified_gmt] => 2020-10-05 00:14:45
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [1] => WP_Post Object
        (
            [ID] => 14910
            [post_author] => 106
            [post_date] => 2020-10-03 23:17:08
            [post_date_gmt] => 2020-10-03 21:17:08
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-7
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-03 23:17:08
            [post_modified_gmt] => 2020-10-03 21:17:08
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [2] => WP_Post Object
        (
            [ID] => 14850
            [post_author] => 132
            [post_date] => 2020-10-02 00:17:39
            [post_date_gmt] => 2020-10-01 22:17:39
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-10
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-02 00:17:39
            [post_modified_gmt] => 2020-10-01 22:17:39
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [3] => WP_Post Object
        (
            [ID] => 14841
            [post_author] => 106
            [post_date] => 2020-10-01 22:39:19
            [post_date_gmt] => 2020-10-01 20:39:19
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-9
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 22:39:19
            [post_modified_gmt] => 2020-10-01 20:39:19
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [4] => WP_Post Object
        (
            [ID] => 14837
            [post_author] => 106
            [post_date] => 2020-10-01 16:39:16
            [post_date_gmt] => 2020-10-01 14:39:16
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-8
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 16:39:16
            [post_modified_gmt] => 2020-10-01 14:39:16
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [5] => WP_Post Object
        (
            [ID] => 14821
            [post_author] => 106
            [post_date] => 2020-10-01 01:29:58
            [post_date_gmt] => 2020-09-30 23:29:58
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-7
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 01:29:58
            [post_modified_gmt] => 2020-09-30 23:29:58
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [6] => WP_Post Object
        (
            [ID] => 14777
            [post_author] => 106
            [post_date] => 2020-10-01 01:16:34
            [post_date_gmt] => 2020-09-30 23:16:34
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-6
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 01:16:34
            [post_modified_gmt] => 2020-09-30 23:16:34
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [7] => WP_Post Object
        (
            [ID] => 14523
            [post_author] => 106
            [post_date] => 2020-09-22 13:11:36
            [post_date_gmt] => 2020-09-22 11:11:36
            [post_content] => 
            [post_title] => CRED Auto Draft 190edf631d0684e7b748d192e22b06ee
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-190edf631d0684e7b748d192e22b06ee
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-22 13:11:36
            [post_modified_gmt] => 2020-09-22 11:11:36
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [8] => WP_Post Object
        (
            [ID] => 14438
            [post_author] => 106
            [post_date] => 2020-09-21 13:14:14
            [post_date_gmt] => 2020-09-21 11:14:14
            [post_content] => 
            [post_title] => CRED Auto Draft 71add1da4fe5315b3e07cc760cabece0
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-71add1da4fe5315b3e07cc760cabece0-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-22 13:12:32
            [post_modified_gmt] => 2020-09-22 11:12:32
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [9] => WP_Post Object
        (
            [ID] => 14400
            [post_author] => 106
            [post_date] => 2020-09-20 19:26:40
            [post_date_gmt] => 2020-09-20 17:26:40
            [post_content] => 
            [post_title] => CRED Auto Draft 5369e5192072b49b6bc9d51214bd4206
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-5369e5192072b49b6bc9d51214bd4206-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-20 19:26:40
            [post_modified_gmt] => 2020-09-20 17:26:40
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [10] => WP_Post Object
        (
            [ID] => 14388
            [post_author] => 106
            [post_date] => 2020-09-19 19:12:32
            [post_date_gmt] => 2020-09-19 17:12:32
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:12:32
            [post_modified_gmt] => 2020-09-19 17:12:32
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [11] => WP_Post Object
        (
            [ID] => 14387
            [post_author] => 106
            [post_date] => 2020-09-19 19:11:28
            [post_date_gmt] => 2020-09-19 17:11:28
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:11:28
            [post_modified_gmt] => 2020-09-19 17:11:28
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [12] => WP_Post Object
        (
            [ID] => 14386
            [post_author] => 106
            [post_date] => 2020-09-19 19:10:06
            [post_date_gmt] => 2020-09-19 17:10:06
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:10:06
            [post_modified_gmt] => 2020-09-19 17:10:06
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [13] => WP_Post Object
        (
            [ID] => 14143
            [post_author] => 106
            [post_date] => 2020-09-19 19:09:35
            [post_date_gmt] => 2020-09-19 17:09:35
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:09:35
            [post_modified_gmt] => 2020-09-19 17:09:35
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [14] => WP_Post Object
        (
            [ID] => 14365
            [post_author] => 106
            [post_date] => 2020-09-19 01:09:00
            [post_date_gmt] => 2020-09-18 23:09:00
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-15
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 01:09:00
            [post_modified_gmt] => 2020-09-18 23:09:00
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [15] => WP_Post Object
        (
            [ID] => 14364
            [post_author] => 106
            [post_date] => 2020-09-19 01:05:24
            [post_date_gmt] => 2020-09-18 23:05:24
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-14
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 01:05:50
            [post_modified_gmt] => 2020-09-18 23:05:50
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [16] => WP_Post Object
        (
            [ID] => 14344
            [post_author] => 106
            [post_date] => 2020-09-19 00:59:40
            [post_date_gmt] => 2020-09-18 22:59:40
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-13
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 00:59:40
            [post_modified_gmt] => 2020-09-18 22:59:40
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [17] => WP_Post Object
        (
            [ID] => 14360
            [post_author] => 106
            [post_date] => 2020-09-18 18:30:57
            [post_date_gmt] => 2020-09-18 16:30:57
            [post_content] => 
            [post_title] => CRED Auto Draft d0807bc4e957eaf05d005b49a262c520
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-d0807bc4e957eaf05d005b49a262c520
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-18 18:30:57
            [post_modified_gmt] => 2020-09-18 16:30:57
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [18] => WP_Post Object
        (
            [ID] => 14331
            [post_author] => 106
            [post_date] => 2020-09-17 17:55:06
            [post_date_gmt] => 2020-09-17 15:55:06
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-10
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-17 17:55:06
            [post_modified_gmt] => 2020-09-17 15:55:06
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [19] => WP_Post Object
        (
            [ID] => 14201
            [post_author] => 106
            [post_date] => 2020-09-14 12:30:15
            [post_date_gmt] => 2020-09-14 10:30:15
            [post_content] => 
            [post_title] => CRED Auto Draft ddd386d5db0dcaf2b363dbfab4e77bf1
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-ddd386d5db0dcaf2b363dbfab4e77bf1-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-14 12:30:15
            [post_modified_gmt] => 2020-09-14 10:30:15
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [20] => WP_Post Object
        (
            [ID] => 14187
            [post_author] => 106
            [post_date] => 2020-09-14 12:26:00
            [post_date_gmt] => 2020-09-14 10:26:00
            [post_content] => 
            [post_title] => CRED Auto Draft ddd386d5db0dcaf2b363dbfab4e77bf1
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-ddd386d5db0dcaf2b363dbfab4e77bf1
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-14 12:26:00
            [post_modified_gmt] => 2020-09-14 10:26:00
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [21] => WP_Post Object
        (
            [ID] => 14126
            [post_author] => 106
            [post_date] => 2020-09-12 12:34:42
            [post_date_gmt] => 2020-09-12 10:34:42
            [post_content] => 
            [post_title] => CRED Auto Draft f10361a6c1869d1cf02ee016aae23dec
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-f10361a6c1869d1cf02ee016aae23dec-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-12 12:34:42
            [post_modified_gmt] => 2020-09-12 10:34:42
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [22] => WP_Post Object
        (
            [ID] => 14057
            [post_author] => 106
            [post_date] => 2020-09-11 01:22:42
            [post_date_gmt] => 2020-09-10 23:22:42
            [post_content] => 
            [post_title] => CRED Auto Draft 33f706dc59ba35c4ced326f97b3e830a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-33f706dc59ba35c4ced326f97b3e830a-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-11 01:23:11
            [post_modified_gmt] => 2020-09-10 23:23:11
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [23] => WP_Post Object
        (
            [ID] => 14053
            [post_author] => 106
            [post_date] => 2020-09-11 01:22:18
            [post_date_gmt] => 2020-09-10 23:22:18
            [post_content] => 
            [post_title] => CRED Auto Draft 33f706dc59ba35c4ced326f97b3e830a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-33f706dc59ba35c4ced326f97b3e830a
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-11 01:22:18
            [post_modified_gmt] => 2020-09-10 23:22:18
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [24] => WP_Post Object
        (
            [ID] => 13928
            [post_author] => 106
            [post_date] => 2020-09-08 13:38:08
            [post_date_gmt] => 2020-09-08 11:38:08
            [post_content] => 
            [post_title] => CRED Auto Draft e1a3aba508a5a858f09731376c68aee9
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e1a3aba508a5a858f09731376c68aee9-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-08 13:40:08
            [post_modified_gmt] => 2020-09-08 11:40:08
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [25] => WP_Post Object
        (
            [ID] => 13925
            [post_author] => 106
            [post_date] => 2020-09-08 13:32:28
            [post_date_gmt] => 2020-09-08 11:32:28
            [post_content] => 
            [post_title] => CRED Auto Draft e1a3aba508a5a858f09731376c68aee9
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e1a3aba508a5a858f09731376c68aee9-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-08 13:32:28
            [post_modified_gmt] => 2020-09-08 11:32:28
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [26] => WP_Post Object
        (
            [ID] => 13713
            [post_author] => 50
            [post_date] => 2020-09-02 10:49:42
            [post_date_gmt] => 2020-09-02 08:49:42
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:49:42
            [post_modified_gmt] => 2020-09-02 08:49:42
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [27] => WP_Post Object
        (
            [ID] => 13712
            [post_author] => 50
            [post_date] => 2020-09-02 10:48:58
            [post_date_gmt] => 2020-09-02 08:48:58
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:48:58
            [post_modified_gmt] => 2020-09-02 08:48:58
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [28] => WP_Post Object
        (
            [ID] => 13710
            [post_author] => 50
            [post_date] => 2020-09-02 10:48:07
            [post_date_gmt] => 2020-09-02 08:48:07
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:48:07
            [post_modified_gmt] => 2020-09-02 08:48:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [29] => WP_Post Object
        (
            [ID] => 13675
            [post_author] => 106
            [post_date] => 2020-09-02 02:08:17
            [post_date_gmt] => 2020-09-02 00:08:17
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-23
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 02:08:17
            [post_modified_gmt] => 2020-09-02 00:08:17
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [30] => WP_Post Object
        (
            [ID] => 13647
            [post_author] => 106
            [post_date] => 2020-09-01 15:54:47
            [post_date_gmt] => 2020-09-01 13:54:47
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-5
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:54:47
            [post_modified_gmt] => 2020-09-01 13:54:47
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [31] => WP_Post Object
        (
            [ID] => 13646
            [post_author] => 106
            [post_date] => 2020-09-01 15:52:04
            [post_date_gmt] => 2020-09-01 13:52:04
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:52:04
            [post_modified_gmt] => 2020-09-01 13:52:04
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [32] => WP_Post Object
        (
            [ID] => 13645
            [post_author] => 106
            [post_date] => 2020-09-01 15:48:53
            [post_date_gmt] => 2020-09-01 13:48:53
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:48:53
            [post_modified_gmt] => 2020-09-01 13:48:53
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [33] => WP_Post Object
        (
            [ID] => 13644
            [post_author] => 106
            [post_date] => 2020-09-01 15:46:52
            [post_date_gmt] => 2020-09-01 13:46:52
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:48:05
            [post_modified_gmt] => 2020-09-01 13:48:05
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [34] => WP_Post Object
        (
            [ID] => 13642
            [post_author] => 106
            [post_date] => 2020-09-01 15:45:01
            [post_date_gmt] => 2020-09-01 13:45:01
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:45:50
            [post_modified_gmt] => 2020-09-01 13:45:50
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [35] => WP_Post Object
        (
            [ID] => 13616
            [post_author] => 106
            [post_date] => 2020-09-01 04:10:41
            [post_date_gmt] => 2020-09-01 02:10:41
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-18
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 04:10:41
            [post_modified_gmt] => 2020-09-01 02:10:41
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [36] => WP_Post Object
        (
            [ID] => 13615
            [post_author] => 106
            [post_date] => 2020-09-01 04:10:07
            [post_date_gmt] => 2020-09-01 02:10:07
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-17
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 04:10:07
            [post_modified_gmt] => 2020-09-01 02:10:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [37] => WP_Post Object
        (
            [ID] => 13600
            [post_author] => 106
            [post_date] => 2020-09-01 03:22:17
            [post_date_gmt] => 2020-09-01 01:22:17
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 02:54:07
            [post_modified_gmt] => 2020-09-02 00:54:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [38] => WP_Post Object
        (
            [ID] => 13599
            [post_author] => 106
            [post_date] => 2020-09-01 03:21:37
            [post_date_gmt] => 2020-09-01 01:21:37
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 03:21:37
            [post_modified_gmt] => 2020-09-01 01:21:37
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [39] => WP_Post Object
        (
            [ID] => 13553
            [post_author] => 106
            [post_date] => 2020-09-01 03:00:24
            [post_date_gmt] => 2020-09-01 01:00:24
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 03:00:24
            [post_modified_gmt] => 2020-09-01 01:00:24
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [40] => WP_Post Object
        (
            [ID] => 13202
            [post_author] => 106
            [post_date] => 2020-08-20 00:08:29
            [post_date_gmt] => 2020-08-19 22:08:29
            [post_content] => 
            [post_title] => CRED Auto Draft 7aa96aa23abb9443d71b77c9fafce273
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-7aa96aa23abb9443d71b77c9fafce273
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-20 00:08:29
            [post_modified_gmt] => 2020-08-19 22:08:29
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [41] => WP_Post Object
        (
            [ID] => 13198
            [post_author] => 106
            [post_date] => 2020-08-18 03:43:45
            [post_date_gmt] => 2020-08-18 01:43:45
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:43:45
            [post_modified_gmt] => 2020-08-18 01:43:45
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [42] => WP_Post Object
        (
            [ID] => 13197
            [post_author] => 106
            [post_date] => 2020-08-18 03:43:26
            [post_date_gmt] => 2020-08-18 01:43:26
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:43:26
            [post_modified_gmt] => 2020-08-18 01:43:26
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [43] => WP_Post Object
        (
            [ID] => 13192
            [post_author] => 106
            [post_date] => 2020-08-18 03:42:13
            [post_date_gmt] => 2020-08-18 01:42:13
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:42:13
            [post_modified_gmt] => 2020-08-18 01:42:13
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

)

[05-Oct-2020 21:37:58 UTC] PHP Notice:  Undefined variable: filesize_b in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 126
[05-Oct-2020 21:37:58 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:58 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:58 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:58 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:59 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:59 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:59 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:59 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:37:59 UTC] PHP Notice:  Undefined variable: current_user in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 18
[05-Oct-2020 21:37:59 UTC] PHP Notice:  Trying to get property 'ID' of non-object in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 18
[05-Oct-2020 21:37:59 UTC] printing all posts: 
[05-Oct-2020 21:37:59 UTC] Array
(
    [0] => WP_Post Object
        (
            [ID] => 14951
            [post_author] => 106
            [post_date] => 2020-10-05 02:14:45
            [post_date_gmt] => 2020-10-05 00:14:45
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-14
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-05 02:14:45
            [post_modified_gmt] => 2020-10-05 00:14:45
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [1] => WP_Post Object
        (
            [ID] => 14910
            [post_author] => 106
            [post_date] => 2020-10-03 23:17:08
            [post_date_gmt] => 2020-10-03 21:17:08
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-7
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-03 23:17:08
            [post_modified_gmt] => 2020-10-03 21:17:08
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [2] => WP_Post Object
        (
            [ID] => 14850
            [post_author] => 132
            [post_date] => 2020-10-02 00:17:39
            [post_date_gmt] => 2020-10-01 22:17:39
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-10
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-02 00:17:39
            [post_modified_gmt] => 2020-10-01 22:17:39
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [3] => WP_Post Object
        (
            [ID] => 14841
            [post_author] => 106
            [post_date] => 2020-10-01 22:39:19
            [post_date_gmt] => 2020-10-01 20:39:19
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-9
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 22:39:19
            [post_modified_gmt] => 2020-10-01 20:39:19
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [4] => WP_Post Object
        (
            [ID] => 14837
            [post_author] => 106
            [post_date] => 2020-10-01 16:39:16
            [post_date_gmt] => 2020-10-01 14:39:16
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-8
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 16:39:16
            [post_modified_gmt] => 2020-10-01 14:39:16
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [5] => WP_Post Object
        (
            [ID] => 14821
            [post_author] => 106
            [post_date] => 2020-10-01 01:29:58
            [post_date_gmt] => 2020-09-30 23:29:58
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-7
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 01:29:58
            [post_modified_gmt] => 2020-09-30 23:29:58
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [6] => WP_Post Object
        (
            [ID] => 14777
            [post_author] => 106
            [post_date] => 2020-10-01 01:16:34
            [post_date_gmt] => 2020-09-30 23:16:34
            [post_content] => 
            [post_title] => CRED Auto Draft 19a31da3d09d409cf258614b956b37bc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-19a31da3d09d409cf258614b956b37bc-6
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-10-01 01:16:34
            [post_modified_gmt] => 2020-09-30 23:16:34
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [7] => WP_Post Object
        (
            [ID] => 14523
            [post_author] => 106
            [post_date] => 2020-09-22 13:11:36
            [post_date_gmt] => 2020-09-22 11:11:36
            [post_content] => 
            [post_title] => CRED Auto Draft 190edf631d0684e7b748d192e22b06ee
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-190edf631d0684e7b748d192e22b06ee
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-22 13:11:36
            [post_modified_gmt] => 2020-09-22 11:11:36
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [8] => WP_Post Object
        (
            [ID] => 14438
            [post_author] => 106
            [post_date] => 2020-09-21 13:14:14
            [post_date_gmt] => 2020-09-21 11:14:14
            [post_content] => 
            [post_title] => CRED Auto Draft 71add1da4fe5315b3e07cc760cabece0
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-71add1da4fe5315b3e07cc760cabece0-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-22 13:12:32
            [post_modified_gmt] => 2020-09-22 11:12:32
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [9] => WP_Post Object
        (
            [ID] => 14400
            [post_author] => 106
            [post_date] => 2020-09-20 19:26:40
            [post_date_gmt] => 2020-09-20 17:26:40
            [post_content] => 
            [post_title] => CRED Auto Draft 5369e5192072b49b6bc9d51214bd4206
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-5369e5192072b49b6bc9d51214bd4206-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-20 19:26:40
            [post_modified_gmt] => 2020-09-20 17:26:40
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [10] => WP_Post Object
        (
            [ID] => 14388
            [post_author] => 106
            [post_date] => 2020-09-19 19:12:32
            [post_date_gmt] => 2020-09-19 17:12:32
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:12:32
            [post_modified_gmt] => 2020-09-19 17:12:32
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [11] => WP_Post Object
        (
            [ID] => 14387
            [post_author] => 106
            [post_date] => 2020-09-19 19:11:28
            [post_date_gmt] => 2020-09-19 17:11:28
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:11:28
            [post_modified_gmt] => 2020-09-19 17:11:28
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [12] => WP_Post Object
        (
            [ID] => 14386
            [post_author] => 106
            [post_date] => 2020-09-19 19:10:06
            [post_date_gmt] => 2020-09-19 17:10:06
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:10:06
            [post_modified_gmt] => 2020-09-19 17:10:06
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [13] => WP_Post Object
        (
            [ID] => 14143
            [post_author] => 106
            [post_date] => 2020-09-19 19:09:35
            [post_date_gmt] => 2020-09-19 17:09:35
            [post_content] => 
            [post_title] => CRED Auto Draft e170ea95324f01609b61ab5c3bd6d76e
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e170ea95324f01609b61ab5c3bd6d76e
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 19:09:35
            [post_modified_gmt] => 2020-09-19 17:09:35
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [14] => WP_Post Object
        (
            [ID] => 14365
            [post_author] => 106
            [post_date] => 2020-09-19 01:09:00
            [post_date_gmt] => 2020-09-18 23:09:00
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-15
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 01:09:00
            [post_modified_gmt] => 2020-09-18 23:09:00
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [15] => WP_Post Object
        (
            [ID] => 14364
            [post_author] => 106
            [post_date] => 2020-09-19 01:05:24
            [post_date_gmt] => 2020-09-18 23:05:24
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-14
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 01:05:50
            [post_modified_gmt] => 2020-09-18 23:05:50
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [16] => WP_Post Object
        (
            [ID] => 14344
            [post_author] => 106
            [post_date] => 2020-09-19 00:59:40
            [post_date_gmt] => 2020-09-18 22:59:40
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-13
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-19 00:59:40
            [post_modified_gmt] => 2020-09-18 22:59:40
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [17] => WP_Post Object
        (
            [ID] => 14360
            [post_author] => 106
            [post_date] => 2020-09-18 18:30:57
            [post_date_gmt] => 2020-09-18 16:30:57
            [post_content] => 
            [post_title] => CRED Auto Draft d0807bc4e957eaf05d005b49a262c520
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-d0807bc4e957eaf05d005b49a262c520
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-18 18:30:57
            [post_modified_gmt] => 2020-09-18 16:30:57
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [18] => WP_Post Object
        (
            [ID] => 14331
            [post_author] => 106
            [post_date] => 2020-09-17 17:55:06
            [post_date_gmt] => 2020-09-17 15:55:06
            [post_content] => 
            [post_title] => CRED Auto Draft 582638b3cbdd4b6c16a7e73b2e1badbc
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-582638b3cbdd4b6c16a7e73b2e1badbc-10
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-17 17:55:06
            [post_modified_gmt] => 2020-09-17 15:55:06
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [19] => WP_Post Object
        (
            [ID] => 14201
            [post_author] => 106
            [post_date] => 2020-09-14 12:30:15
            [post_date_gmt] => 2020-09-14 10:30:15
            [post_content] => 
            [post_title] => CRED Auto Draft ddd386d5db0dcaf2b363dbfab4e77bf1
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-ddd386d5db0dcaf2b363dbfab4e77bf1-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-14 12:30:15
            [post_modified_gmt] => 2020-09-14 10:30:15
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [20] => WP_Post Object
        (
            [ID] => 14187
            [post_author] => 106
            [post_date] => 2020-09-14 12:26:00
            [post_date_gmt] => 2020-09-14 10:26:00
            [post_content] => 
            [post_title] => CRED Auto Draft ddd386d5db0dcaf2b363dbfab4e77bf1
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-ddd386d5db0dcaf2b363dbfab4e77bf1
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-14 12:26:00
            [post_modified_gmt] => 2020-09-14 10:26:00
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [21] => WP_Post Object
        (
            [ID] => 14126
            [post_author] => 106
            [post_date] => 2020-09-12 12:34:42
            [post_date_gmt] => 2020-09-12 10:34:42
            [post_content] => 
            [post_title] => CRED Auto Draft f10361a6c1869d1cf02ee016aae23dec
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-f10361a6c1869d1cf02ee016aae23dec-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-12 12:34:42
            [post_modified_gmt] => 2020-09-12 10:34:42
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [22] => WP_Post Object
        (
            [ID] => 14057
            [post_author] => 106
            [post_date] => 2020-09-11 01:22:42
            [post_date_gmt] => 2020-09-10 23:22:42
            [post_content] => 
            [post_title] => CRED Auto Draft 33f706dc59ba35c4ced326f97b3e830a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-33f706dc59ba35c4ced326f97b3e830a-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-11 01:23:11
            [post_modified_gmt] => 2020-09-10 23:23:11
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [23] => WP_Post Object
        (
            [ID] => 14053
            [post_author] => 106
            [post_date] => 2020-09-11 01:22:18
            [post_date_gmt] => 2020-09-10 23:22:18
            [post_content] => 
            [post_title] => CRED Auto Draft 33f706dc59ba35c4ced326f97b3e830a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-33f706dc59ba35c4ced326f97b3e830a
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-11 01:22:18
            [post_modified_gmt] => 2020-09-10 23:22:18
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [24] => WP_Post Object
        (
            [ID] => 13928
            [post_author] => 106
            [post_date] => 2020-09-08 13:38:08
            [post_date_gmt] => 2020-09-08 11:38:08
            [post_content] => 
            [post_title] => CRED Auto Draft e1a3aba508a5a858f09731376c68aee9
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e1a3aba508a5a858f09731376c68aee9-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-08 13:40:08
            [post_modified_gmt] => 2020-09-08 11:40:08
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [25] => WP_Post Object
        (
            [ID] => 13925
            [post_author] => 106
            [post_date] => 2020-09-08 13:32:28
            [post_date_gmt] => 2020-09-08 11:32:28
            [post_content] => 
            [post_title] => CRED Auto Draft e1a3aba508a5a858f09731376c68aee9
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e1a3aba508a5a858f09731376c68aee9-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-08 13:32:28
            [post_modified_gmt] => 2020-09-08 11:32:28
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [26] => WP_Post Object
        (
            [ID] => 13713
            [post_author] => 50
            [post_date] => 2020-09-02 10:49:42
            [post_date_gmt] => 2020-09-02 08:49:42
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:49:42
            [post_modified_gmt] => 2020-09-02 08:49:42
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [27] => WP_Post Object
        (
            [ID] => 13712
            [post_author] => 50
            [post_date] => 2020-09-02 10:48:58
            [post_date_gmt] => 2020-09-02 08:48:58
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:48:58
            [post_modified_gmt] => 2020-09-02 08:48:58
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [28] => WP_Post Object
        (
            [ID] => 13710
            [post_author] => 50
            [post_date] => 2020-09-02 10:48:07
            [post_date_gmt] => 2020-09-02 08:48:07
            [post_content] => 
            [post_title] => CRED Auto Draft 9b44d8de1f8bf257dd719b8aa30096d6
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-9b44d8de1f8bf257dd719b8aa30096d6
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 10:48:07
            [post_modified_gmt] => 2020-09-02 08:48:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [29] => WP_Post Object
        (
            [ID] => 13675
            [post_author] => 106
            [post_date] => 2020-09-02 02:08:17
            [post_date_gmt] => 2020-09-02 00:08:17
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-23
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 02:08:17
            [post_modified_gmt] => 2020-09-02 00:08:17
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [30] => WP_Post Object
        (
            [ID] => 13647
            [post_author] => 106
            [post_date] => 2020-09-01 15:54:47
            [post_date_gmt] => 2020-09-01 13:54:47
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-5
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:54:47
            [post_modified_gmt] => 2020-09-01 13:54:47
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [31] => WP_Post Object
        (
            [ID] => 13646
            [post_author] => 106
            [post_date] => 2020-09-01 15:52:04
            [post_date_gmt] => 2020-09-01 13:52:04
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-4
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:52:04
            [post_modified_gmt] => 2020-09-01 13:52:04
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [32] => WP_Post Object
        (
            [ID] => 13645
            [post_author] => 106
            [post_date] => 2020-09-01 15:48:53
            [post_date_gmt] => 2020-09-01 13:48:53
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:48:53
            [post_modified_gmt] => 2020-09-01 13:48:53
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [33] => WP_Post Object
        (
            [ID] => 13644
            [post_author] => 106
            [post_date] => 2020-09-01 15:46:52
            [post_date_gmt] => 2020-09-01 13:46:52
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:48:05
            [post_modified_gmt] => 2020-09-01 13:48:05
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [34] => WP_Post Object
        (
            [ID] => 13642
            [post_author] => 106
            [post_date] => 2020-09-01 15:45:01
            [post_date_gmt] => 2020-09-01 13:45:01
            [post_content] => 
            [post_title] => CRED Auto Draft 3bac2f7c2929ecf4de0417a979ece44b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-3bac2f7c2929ecf4de0417a979ece44b
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 15:45:50
            [post_modified_gmt] => 2020-09-01 13:45:50
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [35] => WP_Post Object
        (
            [ID] => 13616
            [post_author] => 106
            [post_date] => 2020-09-01 04:10:41
            [post_date_gmt] => 2020-09-01 02:10:41
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-18
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 04:10:41
            [post_modified_gmt] => 2020-09-01 02:10:41
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [36] => WP_Post Object
        (
            [ID] => 13615
            [post_author] => 106
            [post_date] => 2020-09-01 04:10:07
            [post_date_gmt] => 2020-09-01 02:10:07
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-17
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 04:10:07
            [post_modified_gmt] => 2020-09-01 02:10:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [37] => WP_Post Object
        (
            [ID] => 13600
            [post_author] => 106
            [post_date] => 2020-09-01 03:22:17
            [post_date_gmt] => 2020-09-01 01:22:17
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-02 02:54:07
            [post_modified_gmt] => 2020-09-02 00:54:07
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [38] => WP_Post Object
        (
            [ID] => 13599
            [post_author] => 106
            [post_date] => 2020-09-01 03:21:37
            [post_date_gmt] => 2020-09-01 01:21:37
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 03:21:37
            [post_modified_gmt] => 2020-09-01 01:21:37
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [39] => WP_Post Object
        (
            [ID] => 13553
            [post_author] => 106
            [post_date] => 2020-09-01 03:00:24
            [post_date_gmt] => 2020-09-01 01:00:24
            [post_content] => 
            [post_title] => CRED Auto Draft e6a3908759405ec839b7140c2a63027a
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-e6a3908759405ec839b7140c2a63027a
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-09-01 03:00:24
            [post_modified_gmt] => 2020-09-01 01:00:24
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [40] => WP_Post Object
        (
            [ID] => 13202
            [post_author] => 106
            [post_date] => 2020-08-20 00:08:29
            [post_date_gmt] => 2020-08-19 22:08:29
            [post_content] => 
            [post_title] => CRED Auto Draft 7aa96aa23abb9443d71b77c9fafce273
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-7aa96aa23abb9443d71b77c9fafce273
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-20 00:08:29
            [post_modified_gmt] => 2020-08-19 22:08:29
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [41] => WP_Post Object
        (
            [ID] => 13198
            [post_author] => 106
            [post_date] => 2020-08-18 03:43:45
            [post_date_gmt] => 2020-08-18 01:43:45
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b-3
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:43:45
            [post_modified_gmt] => 2020-08-18 01:43:45
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [42] => WP_Post Object
        (
            [ID] => 13197
            [post_author] => 106
            [post_date] => 2020-08-18 03:43:26
            [post_date_gmt] => 2020-08-18 01:43:26
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b-2
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:43:26
            [post_modified_gmt] => 2020-08-18 01:43:26
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

    [43] => WP_Post Object
        (
            [ID] => 13192
            [post_author] => 106
            [post_date] => 2020-08-18 03:42:13
            [post_date_gmt] => 2020-08-18 01:42:13
            [post_content] => 
            [post_title] => CRED Auto Draft 05eed1b1dd53c080630b8c393665b30b
            [post_excerpt] => 
            [post_status] => publish
            [comment_status] => closed
            [ping_status] => closed
            [post_password] => 
            [post_name] => cred-auto-draft-05eed1b1dd53c080630b8c393665b30b
            [to_ping] => 
            [pinged] => 
            [post_modified] => 2020-08-18 03:42:13
            [post_modified_gmt] => 2020-08-18 01:42:13
            [post_content_filtered] => 
            [post_parent] => 0
            [guid] => <em><u>hidden link</u></em>
            [menu_order] => 0
            [post_type] => rask
            [post_mime_type] => 
            [comment_count] => 0
            [filter] => raw
        )

)

[05-Oct-2020 21:37:59 UTC] PHP Notice:  Undefined variable: filesize_b in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 126
[05-Oct-2020 21:38:00 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:00 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:00 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:00 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:00 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:01 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:01 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81
[05-Oct-2020 21:38:01 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 81

add_shortcode( 'filesize_sum_user', 'calc_func' );

function calc_func( $atts ){
   
// get all Posts of your type
        $all_posts = get_posts(array(
            'numberposts'   => -1,
            'post_type'     => 'rask',
            'author' => $current_user->ID,
            'meta_query' => array(
                array(
                       'key'   => 'wpcf-rask-welches-journal-termine',
                       'value' => '6',
                      )
                                  )

            )
        );

error_log('printing all posts: ' );
error_log(print_r($all_posts, true));
   
//if it returns some posts
        if( $all_posts ){
  
            //Start the count on 0
        $single_posts_value_sum = 0;

  
            //now get the single posts fields values 
            foreach( $all_posts as $single_post ){ 
   
                //get each Posts post data
                $single_post_data = get_post($single_post);
                //get each ID
                $single_post_id = $single_post_data->ID;
                                //get each posts field value
              

              
//Custom Field A      

              
$value_images_array_a = get_post_meta($single_post_id,'wpcf-rask-bilder', false);
              
$image_filesize_sum_a = 0;  
              
                
  
foreach($value_images_array_a as $value_images_a){
  
//check if 'file_url_a' is set?
if(isset($value_images_a) ) {  
  
//Get the header response for the file in question.
$headers_a = get_headers($value_images_a, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_a = array_change_key_case($headers_a);

//Set to -1 by default.
$fileSize_a = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_a['content-length'])){
$fileSize_a = $headers_a['content-length'];}
    
$image_filesize_sum_a+= $filesize_a; 
                              
}
}
                       
//Sum the values all posts fields
$single_posts_value_sum+= $image_filesize_sum_a; 

             

              
              
              
              
//Custom Field B      

              
$value_images_array_b = get_post_meta($single_post_id,'wpcf-rask-video', false);
              
$image_filesize_sum_b = 0;  
              
           
  
foreach($value_images_array_b as $value_images_b){
  
  
//check if 'file_url_b' is set?
if(isset($value_images_b) ) {
    
  
//Get the header response for the file in question.
$headers_b = get_headers($value_images_b, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_b = array_change_key_case($headers_b);

//Set to -1 by default.
$fileSize_b = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_b['content-length'])){
$fileSize_b = $headers_b['content-length'];}
    
$image_filesize_sum_b+= $filesize_b; 
                              
}
}
              
//Sum the values all posts fields
$single_posts_value_sum+= $image_filesize_sum_b; 


              
              
//end of the custom fields, close 
           
}               
}
  
//Convert it into KB
$single_posts_value_sum_KB = round($single_posts_value_sum / 1024);
 
return 'You already used ' . $single_posts_value_sum_KB . ' KB of your allowed memory.';
  
}
#1802055

Types stores the image URL as the value of an image field, or an array of URLs if the field repeats. You said that you expect $value_images_a to be the URL of an image. If it's not the URL of an image, what is it, and why? Find out by logging the value of the variable using error_log and print_r. You would also want to know what the single post ID is, to be sure you are querying the correct post's field values. Add those logs like so:

//Custom Field A      
 
               
$value_images_array_a = get_post_meta($single_post_id,'wpcf-rask-bilder', false);
error_log('Single post ID: ' . $single_post_id );
error_log('value images array a ');
error_log(print_r($value_images_array_a, true));
#1804361

Hi Christian, many apologies for the delay.

#1 Error_ log 🙂 --> excerpt

[08-Oct-2020 10:48:34 UTC] PHP Notice:  Undefined variable: current_user in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 10
[08-Oct-2020 10:48:34 UTC] PHP Notice:  Trying to get property 'ID' of non-object in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 10

It seems like there is a problem with ...

            'author' => $current_user->ID,

on line 10.. What improvement would you suggest? It should only return posts, where the author is the currently logged in user

#2 Error_ log 🙂 --> excerpt

[08-Oct-2020 10:48:34 UTC] PHP Notice:  Undefined variable: filesize_b in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 119
[08-Oct-2020 10:48:34 UTC] Single post ID: 14850
[08-Oct-2020 10:48:34 UTC] value images array a 
[08-Oct-2020 10:48:34 UTC] Array
(
    [0] => <em><u>hidden link</u></em>
)

[08-Oct-2020 10:48:35 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 71
[08-Oct-2020 10:48:35 UTC] Single post ID: 14841
[08-Oct-2020 10:48:35 UTC] value images array a 
[08-Oct-2020 10:48:35 UTC] Array
(
    [0] => <em><u>hidden link</u></em>
    [1] => <em><u>hidden link</u></em>
)

[08-Oct-2020 10:48:35 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 71
[08-Oct-2020 10:48:35 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 71
[08-Oct-2020 10:48:35 UTC] Single post ID: 14837
[08-Oct-2020 10:48:35 UTC] value images array a 
[08-Oct-2020 10:48:35 UTC] Array
(
    [0] => <em><u>hidden link</u></em>
    [1] => <em><u>hidden link</u></em>

It seems like there is a problem with ...

         $image_filesize_sum_b+= $filesize_b; 

on line 116.. and there is a problem with....

         $image_filesize_sum_a+= $filesize_a; 

on line 71..

It says "undefined variable". This is odd, because I defined
- $image_filesize_sum_b on line 90
- $filesize_b on line 109
- $image_filesize_sum_a on line 47
- $filesize_a on line 64

Do you have any idea, where this error stem from and how I can remove it?

By the way, sorry 🙂 my assumption, that it doesn't save the url of an image was totally wrong

#3 Error_ log 🙂 --> excerpt

[08-Oct-2020 10:49:17 UTC] PHP Warning:  Illegal string offset 'select' in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/pferdejournal_uhrzeiten.php on line 11
[08-Oct-2020 10:49:17 UTC] PHP Warning:  Illegal string offset 'select' in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/betreuugs-und-trainingsjournal-expiration.php on line 12

It seems like there is a problem with ...

   'meta_query' => array(
                array(

on line 11 and 12.. What improvement would you suggest? It's a select field. It should only return posts, where the "Custom field content" equals "6"

#1804621

#1 on line 10.. What improvement would you suggest? It should only return posts, where the author is the currently logged in user]
How to get the current User ID: https://developer.wordpress.org/reference/functions/get_current_user_id/

#2 It says "undefined variable". This is odd, because I defined
- $filesize_b on line 109
- $filesize_a on line 64
Do you have any idea, where this error stem from and how I can remove it?

My guess is $headers_a['content-length'] is undefined, and that's why the variable becomes undefined.

$fileSize_a = $headers_a['content-length'];

#3 Not sure, I can't see anything in your code example that include the text "select".

#1804873

Regarding #3

The select field (wpcf-rask-welches-journal-termine) is here:

function calc_func( $atts ){
    
// get all Posts of your type
        $all_posts = get_posts(array(
            'numberposts'   => -1,
            'post_type'     => 'rask',
            'author' => $current_user->ID,
            'meta_query' => array(
                array(
                       'key'   => 'wpcf-rask-welches-journal-termine',
                       'value' => '6',
                      )
                                  )
 
            )
        );
#1804891

#1 is solved 🙂 🙂 🙂

Regarding #2:

[08-Oct-2020 17:32:45 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 82
[08-Oct-2020 17:32:46 UTC] PHP Notice:  Undefined variable: filesize_a in /homepages/8/d747311993/htdocs/clickandbuilds/Cuteberry/wp-content/toolset-customizations/sum_media_file_sizes_of_a_specific_user.php on line 82
[08-Oct-2020 17:32:46 UTC] Single post ID: 14821
[08-Oct-2020 17:32:46 UTC] value images array a 
[08-Oct-2020 17:32:46 UTC] Array
(
    [0] => <em><u>hidden link</u></em>
    [1] => <em><u>hidden link</u></em>
)

How do I grab the url "hidden link" ? Through "$value_images_a" on line 3 (see code below) ? It seems like the url is there, but I do the wrong thing - and as a result I can't grab it...

Excerpt...

//check if 'file_url_a' is set?
if(!empty($value_images_array_a) ) {                  
  
foreach($value_images_array_a as $value_images_a){
  
//Get the header response for the file in question.
$headers_a = get_headers($value_images_a, 1);

//Convert the array keys to lower case for the sake
//of consistency.
$headers_a = array_change_key_case($headers_a);

//Set to -1 by default.
$fileSize_a = -1;

//Check to see if the content-length key actually exists in
//the array before attempting to access it.
if(isset($headers_a['content-length'])){
$fileSize_a = $headers_a['content-length'];}

//Sum the values all posts fields  
$single_posts_value_sum+= $filesize_a; 
                              
}
}
#1809877

Waqar
Supporter

Languages: English (English )

Timezone: Asia/Karachi (GMT+05:00)

Hi Lara,

Thank you for waiting and I'll be following up on this ticket, as Christian is on a holiday.

In the code snippet from your last message, I found the following issues:

a). At line# 15 & 20, you've used $fileSize_a but in the line# 23, you've used $filesize_a.
( PHP variables are case-sensitive: hidden link )

b). At line# 23, you're adding into $single_posts_value_sum which is not previously defined.

c). The code that sums the values all posts fields (i.e. lines 22 & 23) should be inside the "isset" check at line# 19:


foreach($value_images_array_a as $value_images_a){

	//Get the header response for the file in question.
	$headers_a = get_headers($value_images_a, 1);

	//Convert the array keys to lower case for the sake
	//of consistency.
	$headers_a = array_change_key_case($headers_a);
			 
	//Set to -1 by default.
	$fileSize_a = -1;
	//Set to 0 by default.
	$single_posts_value_sum = 0;
			 
	//Check to see if the content-length key actually exists in
		//the array before attempting to access it.
		if(isset($headers_a['content-length'])){
			$fileSize_a = $headers_a['content-length'];
			//Sum the values all posts fields  
			$single_posts_value_sum+= $fileSize_a; 
		}
}

Important note: As much as we would like to help, 1-1 custom code troubleshooting is beyond the scope of support that we provide over the forum.
( ref: https://toolset.com/toolset-support-policy/ )

For community-based, assistance around general PHP and WordPress customizations, we'll encourage to use the dedicated forums, like:
https://wordpress.org/support/forums/
https://stackoverflow.com/

And for more personalized assistance around custom code, you can also consider hiring a professional from our list of recommended contractors:
https://toolset.com/contractors/

regards,
Waqar

#1813857

Many thanks Waqar for your suggestions.
They did the trick. The code is working now as expected.

Is it ok, if I share here the final solution with a little explanation, how it has to be set up, so that other Toolset users can benefit as well? I can imagine, that...

"I try to prevent, that the user of my website abuse my memory through uploading unlimited videos and pictures. I also thought about changing it in a way, that only the number will be returned ($single_posts_value_sum_KB) and then use it in conditionals to prevent further picture and video uploads, if the user exceed his/her limit."

... is not only a problem, that I struggled with 🙂

Thanks again to you both, Christian and Waqar

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.