现在的位置: 首页 > 综合 > 正文

drupal手动添加内容类型信息

2014年01月29日 ⁄ 综合 ⁄ 共 303字 ⁄ 字号 评论关闭
<?php

$edit = array(
    'status' => 1, //状态为发布
    'sticky' => 0,//置顶为0
    'promote' => 0,//推荐到首页为否
    'comment' => 0,//评论
    'uid' => 1,//管理员ID
    'type' => 'shop',//内容类型
    'title' => '信息标题',// 标题
    'body' => '这里是正文',
    'format' => 2,      /* HTML 格式*/
    'language' => 'und',//语言  
  );
$edit['字段名称']['und']['0']['value'] = '额外的field ui 字段的值';

$node = (object)$edit;
node_save($node);
?>

抱歉!评论已关闭.