web-dev-qa-db-ja.com

作成者によるBBpressトピックの並べ替え

Bbpressフォーラムのトピックのデフォルト設定では、最もアクティブなトピックが自動的に上に表示されます(鮮度順にソートされます)。ただし、作成したトピックの降順またはトピックIDでこの設定を変更したいと思います。これらの変更を行うためにテンプレートファイルを見つけようとしましたが、取得できませんでした。任意の助けは大歓迎です。

2
Skotlive

これをプラグインまたはあなたのアクティブなテーマに追加してください。

function my_custom_display_topic_index_query () {
  $args['orderby'] = 'date';
  $args['order']   = 'DESC';

  return $args;
}
add_filter('bbp_before_has_topics_parse_args', 'my_custom_display_topic_index_query' );
1
netweb

$ args引数も含める必要があります。これは、1つのフォーラムでトピックのソート順が変更された例です。

//* 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 '     );
0
Brad Trivers