Vanilla WoW Wiki
Advertisement

Returns header information about an article.

id, title, isHot, isNew = KBSetup_GetArticleHeaderData(index)

Parameters[]

Arguments[]

(index)
index
Integer - The articles index for that page.

Returns[]

id, title, isHot, isNew
id
Integer - The article's id.
title
String - The article's title.
isHot
Boolean - Show the "hot" symbol or not
isNew
Boolean - Show the "new" symbol or not

Example[]

 local id, title, isHot, isNew = KBSetup_GetArticleHeaderData(1)
 if isNew then
   ChatFrame1:AddMessage("The article " .. id .. "(" .. title .. ") is new.", 1.0, 1.0, 1.0)
 end

Details[]

  • This will work on the "most asked" articles, not the articles of the active query.
Advertisement