Changeset 4926
- Timestamp:
- 05/19/2013 06:20:27 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/core/options.php
r4579 r4926 62 62 '_bbp_root_slug' => 'forums', // Forum archive slug 63 63 '_bbp_topic_archive_slug' => 'topics', // Topic archive slug 64 '_bbp_reply_archive_slug' => 'replies', // Reply archive slug 64 65 65 66 /** Single Slugs ******************************************************/ … … 432 433 433 434 /** 435 * Return the reply archive slug 436 * 437 * @since bbPress (r4925) 438 * @return string 439 */ 440 function 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 /** 434 445 * Return the single topic slug 435 446 *
Note: See TracChangeset
for help on using the changeset viewer.