Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/23/2013 07:09:03 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Hierarchical replies:

  • Introduce setting, option, functions, JS, CSS, and Walker class to support hierarchical replies.
  • Tweak functions where saving the additional reply_to meta data is necessary.
  • Add meta data field in dashboard to show the reply_to ID.
  • There will likely be more tweaking necessary, as we test this further and get more eyes on the code.
  • Fixes #2036.
  • Props jmdodd for this huge effort.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/topics/template-tags.php

    r4935 r4944  
    789789        global $wp_rewrite;
    790790
     791        // Bail if threading replies
     792        if ( bbp_thread_replies() ) {
     793            return;
     794        }
     795
    791796        // Parse arguments against default values
    792797        $r = bbp_parse_args( $args, array(
Note: See TracChangeset for help on using the changeset viewer.