WoW API: KBSetup GetArticleHeaderData
Jump to navigation
Jump to search
← WoW API < KBSetup GetArticleHeaderData
Returns header information about an article.
id, title, isHot, isNew = KBSetup_GetArticleHeaderData(index)
Parameters[edit]
Arguments[edit]
- (index)
- index
- Integer - The articles index for that page.
Returns[edit]
- 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[edit]
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[edit]
- This will work on the "most asked" articles, not the articles of the active query.