Skip to:
Content

bbPress.org

Changeset 4926


Ignore:
Timestamp:
05/19/2013 06:20:27 AM (12 years ago)
Author:
johnjamesjacoby
Message:

Introduce reply archive slug option. See #2336.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/core/options.php

    r4579 r4926  
    6262        '_bbp_root_slug'            => 'forums',    // Forum archive slug
    6363        '_bbp_topic_archive_slug'   => 'topics',    // Topic archive slug
     64        '_bbp_reply_archive_slug'   => 'replies',   // Reply archive slug
    6465
    6566        /** Single Slugs ******************************************************/
     
    432433
    433434/**
     435 * Return the reply archive slug
     436 *
     437 * @since bbPress (r4925)
     438 * @return string
     439 */
     440function bbp_get_reply_archive_slug( $default = 'replies' ) {
     441    return apply_filters( 'bbp_get_reply_archive_slug', get_option( '_bbp_reply_archive_slug', $default ) );
     442}
     443
     444/**
    434445 * Return the single topic slug
    435446 *
Note: See TracChangeset for help on using the changeset viewer.