-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
74 lines (48 loc) · 2.83 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?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">
<a href="<?php echo bp_core_get_user_domain($post->post_author); ?>">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), '40' ); ?>
</a>
</div>
<div class="post-content">
<p class="posttitle">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php esc_attr_e( 'Permanent Link to', 'buddypress' ); ?> <?php the_title_attribute(); ?>"><?php $title = get_the_title(); echo empty($title) ? '(no title)' : $title; ?></a>
<span class="post-excerpt"><?php echo substr( strip_tags( get_the_excerpt() ),0,235) ?></span>
</p>
<p class="date"><a href="<?php the_permalink(); ?>"><?php printf( 'コメント (%d)', get_comments_number()); ?></a> <?php printf('%s %s', get_the_date(), get_the_time()) ?></p>
<?php
/*
<p class="date"><?php printf( __( '%1$s <span>in %2$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ) ); ?></p>
<div class="entry">
<?php the_content( __( 'Read the rest of this entry →', 'buddypress' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><p>' . __( 'Pages: ', 'buddypress' ), 'after' => '</p></div>', 'next_or_number' => 'number' ) ); ?>
</div>
<p class="postmetadata"><?php the_tags( '<span class="tags">' . __( 'Tags: ', 'buddypress' ), ', ', '</span>' ); ?> <span class="comments"><?php comments_popup_link( __( 'No Comments »', 'buddypress' ), __( '1 Comment »', 'buddypress' ), __( '% Comments »', 'buddypress' ) ); ?></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', 'buddypress' ); ?></h2>
<p class="center"><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'buddypress' ); ?></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(); ?>