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
MoreThanWYSIWYGMoreThanWYSIWYG 

Attempting to show lastUpdated knowledge articles on landing page

So, using the following code, I am able to get this working in my Sandbox, but not in my production org
<apex:outputPanel >
<div style="padding-top:25px; padding-left:25px;">
  <h3>Most Recent Articles</h3>
  <ol>
    <knowledge:articleList articleVar="article"
    categories="Savant_Knowledge:All_Knowledge_Articles"
    sortBy="lastUpdated"
    pageSize="10">
          <li class="folderView"><a target = "_top" class="hyperlink" href="{!URLFOR($Action.KnowledgeArticle.View, article.id)}">{!article.title}</a></li>
        </knowledge:articleList>
  </ol>  
</div>
</apex:outputPanel >

The classes and sytling and such are all identical in the sandbox as they are to the production org.

Any suggestions on what I can look at to see why this is not populating?
We do have many knowledge articles in our KB, so that is not the issue.
Best Answer chosen by MoreThanWYSIWYG
MoreThanWYSIWYGMoreThanWYSIWYG
I found it. the categories definition did not match production.