WordPress 3.6 を使用。
メタ情報ウィジェットの「投稿の RSS」「コメントの RSS」「WordPress.org」あたりはいらないので消したい。
そういう場合は wp-includes/default-widgets.php を修正する。自己責任でどうぞ。
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
class WP_Widget_Meta extends WP_Widget { function __construct() { $widget_ops = array('classname' => 'widget_meta', 'description' => __( "Log in/out, admin, feed and WordPress links") ); parent::__construct('meta', __('Meta'), $widget_ops); } function widget( $args, $instance ) { extract($args); $title = apply_filters('widget_title', empty($instance['title']) ? __('Meta') : $instance['title'], $instance, $this->id_base); echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; ?> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li> <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li> <li><a href="<?php esc_attr_e( 'http://wordpress.org/' ); ?>" title="<?php echo esc_attr(__('Powered by WordPress, state-of-the-art semantic personal publishing platform.')); ?>"><?php /* translators: meta widget link text */ _e( 'WordPress.org' ); ?></a></li> <?php wp_meta(); ?> </ul> |
該当箇所をコメントアウトまたは削除する。
でもこれだと WordPress のバージョンアップ時は消されちゃうからその都度修正が必要になる。あらかじめ修正済みの状態になっているような簡単なウィジェットでも自作してそれを使ってたほうが色々と都合がいいと思う。