Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
bp-classic
/
themes
/
bp-default
/
Editing: index.php
<?php get_header(); ?> <div id="content"> <div class="padder"> <?php do_action( 'bp_before_blog_home' ); ?> <?php do_action( 'template_notices' ); ?> <div class="page" id="blog-latest" role="main"> <?php if ( have_posts() ) : ?> <?php bp_dtheme_content_nav( 'nav-above' ); ?> <?php while (have_posts()) : the_post(); ?> <?php do_action( 'bp_before_blog_post' ); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="author-box"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?> <p><?php printf( _x( 'by %s', 'Post written by...', 'bp-classic' ), bp_core_get_userlink( $post->post_author ) ); ?></p> <?php if ( is_sticky() ) : ?> <span class="activity sticky-post"><?php _ex( 'Featured', 'Sticky post', 'bp-classic' ); ?></span> <?php endif; ?> </div> <div class="post-content"> <h2 class="posttitle"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php esc_attr_e( 'Permanent Link to', 'bp-classic' ); ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <p class="date"><?php printf( __( '%1$s <span>in %2$s</span>', 'bp-classic' ), get_the_date(), get_the_category_list( ', ' ) ); ?></p> <div class="entry"> <?php the_content( __( 'Read the rest of this entry →', 'bp-classic' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link"><p>' . __( 'Pages: ', 'bp-classic' ), 'after' => '</p></div>', 'next_or_number' => 'number' ) ); ?> </div> <p class="postmetadata"><?php the_tags( '<span class="tags">' . __( 'Tags: ', 'bp-classic' ), ', ', '</span>' ); ?> <span class="comments"><?php comments_popup_link( __( 'No Comments »', 'bp-classic' ), __( '1 Comment »', 'bp-classic' ), __( '% Comments »', 'bp-classic' ) ); ?></span></p> </div> </div> <?php do_action( 'bp_after_blog_post' ); ?> <?php endwhile; ?> <?php bp_dtheme_content_nav( 'nav-below' ); ?> <?php else : ?> <h2 class="center"><?php _e( 'Not Found', 'bp-classic' ); ?></h2> <p class="center"><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'bp-classic' ); ?></p> <?php get_search_form(); ?> <?php endif; ?> </div> <?php do_action( 'bp_after_blog_home' ); ?> </div><!-- .padder --> </div><!-- #content --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Save
Cancel