Постинг скриптом php, Call to undefined function node_save()

Главные вкладки

Аватар пользователя PGA PGA 21 января 2012 в 23:32

Добрый вечер!

Поясните как добавлять посты средствами php?

<?php

include_once('includes/bootstrap.inc');

$node->title 'My Title';
$node->created time();
$node->status 1//published
$node->promote 0;
$node->sticky 0;
$node->body 'My content here';
$node->type 'story'//or whatever other content type you need
node_save($node);

?>

Этот код вываливает ошибку.
Call to undefined function node_save()

Скрипт я кидаю в корень папки сайта.

Комментарии