I am using following code which is updating my node title fine but not URL PATH SETTING value.

// Update node.
$node_update = Node::load($node->id());
dpm($node_update);
$node_update->title->value = 'My modified title';
$node_update->path->value = ['alias' => '/en/my-new-link'];
$node_update->save();

Comments

webdevfreak’s picture

Thanks but I want to UPDATE not ADD.

I can ADD url path fine but having problem updating the path when I UPDATE a node.

sachinsuryavanshi’s picture

Did you try to update Alias in node object?
try that