function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kerry ProkselKerry Proksel 

Communities - Adding a Topic to a VF Page

I am trying to add a new tab to my community topic detail page that is controlled by the topic itself. Specifically, I have different article types (Videos, FAQs) and I'd like to show them on different tabs. I created a visualforce page, but can't see to set the topic. The issue is that I need it to be dynamic, so when a user switches from topic to topic, they see different articles.

Here is the VF page:
<apex:page showheader="false" >
<apex:outputPanel layout="block">
 
 <knowledge:articleList articleVar="article" articleTypes="Videos__kav"> 
 <a style="font-size:20px; line-height:38px; font-family: Open Sans; font-weight:800; text-decoration:none; " href="{!URLFOR($Action.KnowledgeArticle.View, article.id)}">{!article.title}</a>
  <br />
 </knowledge:articleList>

   </apex:outputPanel>
 </apex:page>


How do I change this page so it recognizes which specific topic should be shown? Any help would be much appreciated.