How to reorder topics in one forum?
-
I’ve set up some FAQs as topics in a closed forum and would like to re-order them. I came across this code:
//* Change sort order of Topics within a specified bbpress forum function my_custom_display_topic_index_query ($args) { $thisforumid = bbp_get_forum_id(); if($thisforumid == 43135) { $args['orderby'] = 'date'; $args['order'] = 'ASC'; } return $args; } add_filter('bbp_before_has_topics_parse_args', 'my_custom_display_topic_index_query ' );
… but when I added it to my functions.php file it hid all the topics (even though at forum archive level it displayed the correct number of topics in the topic count column). Removing it returned my topics.
Any pointers?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.