NiceThemesArticle Order in Category View – NiceThemes http://nicethemeswp.com/forums/topic/article-order-in-category-view/feed/ Mon, 21 Apr 2025 21:26:03 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6480 <![CDATA[Article Order in Category View]]> http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6480 Mon, 26 Oct 2015 10:06:15 +0000 apwallace Hello,

I’ve changed the order of my articles. They are showing up properly in the Knowledge Base View.

However, when you click on a Category, the order of the articles does not reflect the order I set. I basically just need the orders to be sorted by Title…even when the user clicks on a Category.

Based on another forum post, I added the code below to the functions.php file….but, it had no effect on the Article order when in Category view.

Thanks,
Andy

// filter the knowledgebase parser
function nice_knowledgebase_article_order( $args ){
$args[‘orderby’] = ‘title’; // date, rand, menu_order – check the codex for the different options
$args[‘order’] = ‘ASC’; // ASC or DESC. You chose
return $args;
}
add_filter( ‘nicethemes_knowledgebase_default_args’, ‘nice_knowledgebase_article_order’ );

]]>
http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6483 <![CDATA[Reply To: Article Order in Category View]]> http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6483 Mon, 26 Oct 2015 14:14:04 +0000 Juanfra Aldasoro Hello Andy,

Thank you for writing. The order of the “archive” is set by default by WordPress. That piece of code you shared only affects the order of the knowledge base.

We have created another code to alter the order of the articles within the archives, you can find it here: https://gist.github.com/juanfra/cf1979da9bff55518f14

Best,
Juan

]]>
http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6489 <![CDATA[Reply To: Article Order in Category View]]> http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6489 Mon, 26 Oct 2015 22:12:14 +0000 apwallace Thanks! Resolved!

]]>
http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6490 <![CDATA[Reply To: Article Order in Category View]]> http://nicethemeswp.com/forums/topic/article-order-in-category-view/#post-6490 Mon, 26 Oct 2015 22:58:48 +0000 Juanfra Aldasoro Thank you for the follow up.

Have a nice day,
Juan.

]]>