我创建了一个自定义字段,当我编辑它时获取相关人员,文章的主题。我想传递这篇文章的类别 ID,但我不知道该怎么做。下面是我的代码:在article.xml
<fields name="idn_tags">
<field name="idn_tags_people" type="IdnTagsPeopleCheckboxes" />
<field name="idn_tags_subject" type="IdnTagsSubjectCheckboxes" />
</fields>
在edit.php中
<?php echo $this->form->getInput('idn_tags_people','idn_tags'); ?>
<?php echo $this->form->getInput('idn_tags_subject','idn_tags'); ?>
在每个类 IdnTagsPeopleCheckboxes 和 IdnTagsSubjectCheckboxes 中,我想传递当前文章的类别 id 以仅获取人员,该类别的主题,哪些文章可能被标记。