3

我正在尝试以编程方式将一些标签添加到节点的免费标记分类字段中。假设我有以下节点结构,

<?php

$my_tag = 'test';

$node = (object) array(
  'type' => $node_type,
  'nid' => $row->nid,
  'vid' => $row->vid,
  'uid' => 1,
  'status' => $row->status,
  'language' => $row->language,
  'created' => $row->created,
  'changed' => $row->changed,
  'comment' => $row->comment,
  'promote' => $row->promote,
  'title' => $row->title,
  'teaser' => $row->teaser,
  'field_custom_tags' => //TODO add $my_tag to this free tagging taxonomy field
);

$node = node_submit($node);
node_save($node);

?>
4

1 回答 1

0

在 Drupal 7 中,您不需要以编程方式执行此操作。只需使用小部件类型“自动完成”将分类术语字段添加到您的内容类型 - 然后单击“编辑”并选择默认标签。

你已经完成了,除非你想从内容输入表单中隐藏该字段(这是一个单独的问题,在这里回答: How to hide a field on node data entry form in drupal?

默认标签的屏幕截图

于 2012-05-03T17:17:52.030 回答