去掉默认边栏多余条目的办法,如‘文章RSS’等

wordpress的边栏meta栏,总是有wordpress.org链接,去掉它的具体方法如下:(WP3.8版本)

1.在安装目录wp-includes中找到default-widgets.php
2.在编辑器中打开default-widgets.php
3.删除代码第318 – 322行的
<?php echo apply_filters( ‘widget_meta_poweredby’, sprintf( ‘<li><a href=”%s” title=”%s”>%s</a></li>’,
esc_url( __( ‘http://wordpress.org/’ ) ),
esc_attr__( ‘Powered by WordPress, state-of-the-art semantic personal publishing platform.’ ),
_x( ‘WordPress.org’, ‘meta widget link text’ )
) ); ?>
4.若也不想要文章RSS 和评论RSS就把上面两横也删掉
<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>