Making WordPress.org


Ignore:
Timestamp:
09/13/2017 10:13:18 PM (7 years ago)
Author:
johnjamesjacoby
Message:

BuddyPress/bbPress (bb-base theme): Make sure correct styling is enqueued on the front-page.

This filter is necessary because we hard-code our own query to display 5 recent topics on the front-page, which is not a page recognized by is_bbpress().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/sidebar.php

    r1644 r5921  
    22<div class="sidebar">
    33
    4     <?php if ( function_exists( 'is_bbpress' ) && ( is_bbpress() ) || is_page( 'new-topic' ) ) : ?>
     4    <?php if ( ( function_exists( 'is_bbpress' ) && is_bbpress() && ! is_front_page() ) || is_page( 'new-topic' ) ) : ?>
    55
    66        <?php if ( bbp_is_single_forum() || bb_base_topic_search_query( false ) ) : ?>
Note: See TracChangeset for help on using the changeset viewer.