我有一个名为“查询”的内容类型。我想在我的网站的各个地方嵌入节点创建表单。我如何通过PHP做到这一点?
答案 0 :(得分:1)
听起来像是webform模块的工作。如果你真的想去cck路线你可以尝试这样的事情:
$node = new stdClass();
$node->type = 'store_review';
module_load_include('inc', 'node', 'node.pages');
$output = drupal_get_form('store_review_node_form', $node);
print $output;
答案 1 :(得分:0)
解决方案:
$node = new stdClass();
$node->type = 'enquiry';
module_load_include('inc', 'node', 'node.pages');
$output = drupal_get_form('enquiry_node_form', $node);
print $output;