template = $template; $c->title = implode(' ', array_slice(explode(' ', $title), 8, 11)); $c->body = $body; $c->parent = wire()->pages->get($parent); $c->news_date = date("Y-m-d", strtotime( "+" . mt_rand(0,30) . " days")); // Create a random date in the next 0 to 30 days $c->save(); // Save first because we need an directory to place the files in $c->news_image = "http://placehold.it/450x350"; $c->save(); // Save again to append the image }