Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
12/14/2009 03:24:05 PM (16 years ago)
Author:
apeatling
Message:

Committing core code support for new default theme.

Removed all deprecated code since it will be released as a separate plugin for backwards compatibility if people need it.

Removed the wire and status updates components since there is no support in the theme for these. If people still want this functionality then I'm sure there is someone in the community that could spend a bit of time and release them as plugins. I'm happy to guide.

Removed a lot of template loop duplication. There are no longer site loops and user loops (e.g. bp_has_site_groups() / bp_has_groups() ). There are now bp_has_members(), bp_has_groups(), bp_has_blogs() and you can pass a "user_id" parameter into these loops to limit results to only that user or users.

Merged activity stream functions. There are no longer functions for bp_activity_get_sitewide() / bp_activity_get_for_user() / bp_activity_get_friends_activity() instead there is simply one function: bp_activity_get() and you can pass in parameters to filter on just friends, for a single user, or anything your heart desires. Actually, filtering is extremely fine grained, so I encourage devs to check out the filter functions.

Lots of other code cleanup.

The new default theme will be committed straight after this. The original default folder will be renamed to bp-classic.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-sn-parent/directories/blogs/index.php

    r2077 r2168  
    8282            <h3><?php _e( 'Random Blogs', 'buddypress' ) ?></h3>
    8383
    84             <?php if ( bp_has_site_blogs( 'type=random&max=3' ) ) : ?>
     84            <?php if ( bp_has_blogs( 'type=random&max=3' ) ) : ?>
    8585
    8686                <ul id="featured-blogs-list" class="item-list">
    87                     <?php while ( bp_site_blogs() ) : bp_the_site_blog(); ?>
     87                    <?php while ( bp_blogs() ) : bp_the_blog(); ?>
    8888
    8989                        <li>
    9090                            <div class="item-avatar">
    91                                 <a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_avatar_thumb() ?></a>
     91                                <a href="<?php bp_blog_permalink() ?>"><?php bp_blog_avatar_thumb() ?></a>
    9292                            </div>
    9393
    9494                            <div class="item">
    95                                 <div class="item-title"><a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_name() ?></a></div>
    96                                 <div class="item-meta"><span class="activity"><?php bp_the_site_blog_last_active() ?></span></div>
     95                                <div class="item-title"><a href="<?php bp_blog_permalink() ?>"><?php bp_blog_name() ?></a></div>
     96                                <div class="item-meta"><span class="activity"><?php bp_blog_last_active() ?></span></div>
    9797
    98                                 <div class="field-data">
    99                                     <div class="field-name">
    100                                         <strong><?php _e( 'Description: ', 'buddypress' ) ?></strong>
    101                                         <?php bp_the_site_blog_description() ?>
    102                                     </div>
    103                                 </div>
     98                                <?php do_action( 'bp_core_directory_blogs_item' ) ?>
     99                            </div>
    104100
    105                                 <?php do_action( 'bp_directory_blogs_featured_item' ) ?>
    106                             </div>
     101                            <div class="clear"></div>
    107102                        </li>
    108103
Note: See TracChangeset for help on using the changeset viewer.