#WordPress ネットワーク内の別ブログの新着情報を表示するウィジェット
Posted by admin at 11:55 日時 2011/02/17
WordPress3.0から正式に組み込まれたネットワーク(マルチサイト)機能。このネットワーク内の別ブログから新着記事を読み込んで表示するウィジェットを作りました。標準の「最近の投稿」ウィジェットと同じように使えます。
以下のコードを、お使いのテーマのfunctions.phpの末尾にコピペして、保存してください。管理画面の外観>ウィジェットで「別サイトの最近の投稿」というウィジェットが追加されるはずです。
class WP_Widget_NetWork_Recent_Posts extends WP_Widget { function WP_Widget_NetWork_Recent_Posts() { $widget_ops = array( 'classname' => 'widget_network_recent_entries', 'description' => "別サイトの最近の投稿" ); $this->WP_Widget('network-recent-posts', '別サイトの最近の投稿', $widget_ops); $this->alt_option_name = 'widget_custom_recent_entries'; add_action( 'save_post', array(&$this, 'flush_widget_cache') ); add_action( 'deleted_post', array(&$this, 'flush_widget_cache') ); add_action( 'switch_theme', array(&$this, 'flush_widget_cache') ); } function widget($args, $instance) { $cache = wp_cache_get('widget_network_recent_posts', 'widget'); if ( !is_array($cache) ) $cache = array(); if ( isset($cache[$args['widget_id']]) ) { echo $cache[$args['widget_id']]; return; } ob_start(); extract($args); $title = apply_filters('widget_title', empty($instance['title']) ? __('Recent Posts') : $instance['title'], $instance, $this->id_base); if ( !$number = (int) $instance['number'] ) $number = 10; else if ( $number < 1 ) $number = 1; else if ( $number > 15 ) $number = 15; if ( !$blog_id = (int) $instance['blog_id'] ) $blog_id = 1; // switch to selected blog switch_to_blog($blog_id); $r = new WP_Query(array('showposts' => $number, 'nopaging' => 0, 'post_status' => 'publish', 'caller_get_posts' => 1)); if ($r->have_posts()) : ?> <?php echo $before_widget; ?> <?php if ( $title ) echo $before_title . $title . $after_title; ?> <ul> <?php while ($r->have_posts()) : $r->the_post(); ?> <li class="clearfix"> <?php if ( has_post_thumbnail() ) : ?> <a href="<?php the_permalink() ?>" class="entry-thumbnail"><?php the_post_thumbnail( array(40,40) ); ?></a> <?php endif; ?> <a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>" class="entry-title"><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a> <span class="published"><?php the_time('Y/m/d'); ?></span> </li> <?php endwhile; ?> </ul> <?php $after_widget = '<p class="archive"><a href="' . get_home_url( $blog_id ) . '">記事一覧</a></p>' . $after_widget; echo $after_widget; ?> <?php // Reset the global $the_post as this query will have stomped on it wp_reset_postdata(); // Reset current blog restore_current_blog(); endif; $cache[$args['widget_id']] = ob_get_flush(); wp_cache_set('widget_custom_recent_posts', $cache, 'widget'); } function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['number'] = (int) $new_instance['number']; $instance['blog_id'] = (int) $new_instance['blog_id']; $this->flush_widget_cache(); $alloptions = wp_cache_get( 'alloptions', 'options' ); if ( isset($alloptions['widget_custom_recent_entries']) ) delete_option('widget_custom_recent_entries'); return $instance; } function flush_widget_cache() { wp_cache_delete('widget_custom_recent_posts', 'widget'); } function form( $instance ) { $title = isset($instance['title']) ? esc_attr($instance['title']) : ''; if ( !isset($instance['number']) || !$number = (int) $instance['number'] ) $number = 5; if ( !isset($instance['blog_id']) || !$blog_id = (int) $instance['blog_id'] ) $blog_id = 1; ?> <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p> <p><label for="<?php echo $this->get_field_id('blog_id'); ?>">表示するブログのID</label> <input id="<?php echo $this->get_field_id('blog_id'); ?>" name="<?php echo $this->get_field_name('blog_id'); ?>" type="text" value="<?php echo $blog_id; ?>" size="3" /></p> <p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of posts to show:'); ?></label> <input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p> <?php } } // end class WP_Widget_Custom_Recent_Posts add_action( 'widgets_init', create_function( '', 'return register_widget("WP_Widget_NetWork_Recent_Posts");' ) );
WordPressのネットワーク(マルチサイト)はMovable Typeのマルチブログと設計思想が違って、wordpress.comのようなブログポータルサイトを作るための機能です。そのため、各サイトは完全に独立しており、そのことが使いにくいこともあります。個人的には、ブログポータルっぽいサイトでなければ、カスタム投稿タイプを活用したほうがなにかと便利だと思います!
また、ウィジェットはこんな風に意外とかんたんに追加できますので、気に入った機能はウィジェット化して使い回すのが吉です。