Gotta run now but this is what I have to start the ball rolling:
PHP Code:
$taglist = 'tag1, tag2, tag3';
if ($taglist)
{
require_once DIR . '/includes/class_taggablecontent.php';
$taggable = vB_Taggable_Content_Item::create(vB::$vbulletin,
vB_Types::instance()->getContentTypeID("vBCms_Article"),
$nodedm->getField('contentid'));
$taggable->add_tags_to_content($taglist, array('content_limit' => 25));
}
Later I will hammer on it further.