Skip to:
Content

bbPress.org


Ignore:
Timestamp:
12/16/2012 08:19:21 AM (13 years ago)
Author:
jmdodd
Message:

Introduce dedicated forum search.

  • Search forums, topics, and replies.
  • Add new search functions, including bbp_has_search_results().
  • Provide templates for search results.
  • Fixes #1575.
File:
1 edited

Legend:

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

    r4336 r4579  
    8080
    8181        '_bbp_view_slug'            => 'view',      // View slug
     82        '_bbp_search_slug'          => 'search',    // Search slug
    8283
    8384        /** Topics ************************************************************/
     
    500501}
    501502
     503/**
     504 * Return the search slug
     505 *
     506 * @since bbPress (r4579)
     507 *
     508 * @return string
     509 */
     510function bbp_get_search_slug( $default = 'search' ) {
     511    return apply_filters( 'bbp_get_search_slug', bbp_maybe_get_root_slug() . get_option( '_bbp_search_slug', $default ) );
     512}
     513
    502514/** Legacy ********************************************************************/
    503515
Note: See TracChangeset for help on using the changeset viewer.