XPressME Integration Kit

Trac

source: trunk/xpressme_integration_kit/wp-content/themes/xpress_default/multi_blog.php @ 536

Last change on this file since 536 was 536, checked in by toemon, 15 years ago

MultiBlog用に最近の投稿(全ブログ)を追加 r537とあわせ Fixes #302

File size: 2.4 KB
Line 
1<?php get_header(); ?>
2
3<div id="content" class="widecolumn">                  
4        <h3><?php _e('Site News', 'xpress'); ?></h3>
5        <ul>
6                <?php
7                query_posts('showposts=7');
8                if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
9                <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title();?> </a></li>
10                <?php endwhile; ?><?php endif; ?>
11        </ul>
12        <br /> 
13        <h3><?php _e('Blogs List', 'xpress'); ?></h3>
14        <?php
15        $blog_list = get_blog_list( 0, 'all' );
16        echo "<ul>\n";
17        foreach ($blog_list AS $blog) {
18                $url =  'http://' .$blog['domain'] .$blog['path'];
19                $blog_name = get_blog_option( $blog['blog_id'], 'blogname' );
20                $post_count = $blog['postcount'];
21               
22                echo  "<li><a href=\" $url \"> $blog_name </a>  (" . __('post count','xpress') . ":$post_count) </li>";
23        }
24        echo "</ul>\n";
25        ?>
26        <br />
27               
28<?php
29        echo '<h3>' . __('New Entries', 'xpress') . "</h3>\n";
30        $data_array = xpress_grobal_recent_posts();
31        echo "<ul>\n";
32        foreach($data_array as $data){
33                echo '<li>';
34                printf(__('%1$s wrote %2$s in %3$s.','xpress'), $data->post_author,$data->title_link,$data->blog_link);
35                echo "</li>\n";
36        }
37        echo "</ul>\n";
38?>
39
40        <h3><?php _e('Updated Blogs', 'xpress'); ?></h3>
41        <?php
42        $blogs = get_last_updated();
43        if( is_array( $blogs ) ) {
44                ?>
45                <ul>
46                <?php foreach( $blogs as $details ) {
47                        ?><li><a href="http://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a></li><?php
48                }
49                ?>
50                </ul>
51                <?php
52        }
53        ?>
54        <br /> 
55        <?php   
56                $current_uid = get_current_user_id();
57                if (!empty($current_uid)) {
58                        $user_info = get_userdata($current_uid);
59                        $display_name = $user_info->display_name;
60                        echo '<h3>';
61                        printf(__('Howdy %s', 'xpress'),$display_name);
62                        echo "</h3>\n";
63                        echo "<ul>\n";
64               
65                        $user_blogs = get_blogs_of_user($current_uid);
66                        if( is_array($user_blogs) ) {
67                                echo '<li>' . __('Your Blogs list','xpress') ;
68                                        echo "<ul>\n";
69                                        foreach( $user_blogs as $blog ) {
70                                                $url =  'http://' .$blog->domain .$blog->path;
71                                                $blog_name = $blog->blogname;
72                                                echo  "<li><a href=\" $url \"> $blog_name </a></li>";
73                                        }
74                                        echo "</ul>\n";                 
75                                echo "</li>\n";
76                                wp_register();
77                        }
78                        echo '<li> <a href="wp-signup.php">' . __('Create a new blog','xpress') .  "</a></li>\n";
79                        echo "</ul>\n";                 
80                }
81        ?>
82
83</div>
84
85<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.