Is there any way to order or sequence topics within a forum?
I would like Topics to be sorted Alphabetically for all users; ideally locked Topics displaying first.
ThanksHello Judi,
Thank you for the acknowledgment. Please try the following code it will set the topic alphabetically.
add_filter( 'bbp_after_has_topics_parse_args', function ( $args ) { $args['orderby'] = 'title'; $args['order'] = 'ASC'; return $args; } );
Regards
Ravi
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.
This topic is: not resolved