This will generate an item of article content, authored by user 1.
$node = \Drupal\node\Entity\Node::create([
'type' => 'article',
'title' => 'Example Article',
'body' => [
'value' => '<p>Article text.</p>',
'format' => filter_default_format()
],
'uid' => 1,
]);
$node->save();
Add new comment