Skip to content

Instantly share code, notes, and snippets.

@barraponto
Created February 5, 2014 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barraponto/8825551 to your computer and use it in GitHub Desktop.
Save barraponto/8825551 to your computer and use it in GitHub Desktop.
<?php
$e = entity_create('node', array('type' => 'article'));
$e->uid = 1;
$emw = entity_metadata_wrapper('node', $e);
$emw->title->set('This is a test node');
$emw->body->value->set('Lorem ipsum dolor sit amet');
$emw->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment