Changeset 2168 for trunk/bp-themes/bp-sn-parent/directories/blogs/index.php
- Timestamp:
- 12/14/2009 03:24:05 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-sn-parent/directories/blogs/index.php
r2077 r2168 82 82 <h3><?php _e( 'Random Blogs', 'buddypress' ) ?></h3> 83 83 84 <?php if ( bp_has_ site_blogs( 'type=random&max=3' ) ) : ?>84 <?php if ( bp_has_blogs( 'type=random&max=3' ) ) : ?> 85 85 86 86 <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(); ?> 88 88 89 89 <li> 90 90 <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> 92 92 </div> 93 93 94 94 <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> 97 97 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> 104 100 105 <?php do_action( 'bp_directory_blogs_featured_item' ) ?> 106 </div> 101 <div class="clear"></div> 107 102 </li> 108 103
Note: See TracChangeset
for help on using the changeset viewer.