wordpress小工具”功能“去掉 wordpress.org 方法

用过wordpress博客程序的人都知道,wordpress小工具默认有一个模块“功能”;这个功能主要的作用就是注册和登陆;但是当我们启动这个功能后:显示如下:

功能

管理站点

登出

文章RSS

评论RSS

WordPress.org

很明显,这样的情况不是我们所想要的,我们至少要去掉"wordpress.org";这样无论是对自己网站品牌来说还是对于网站优化来说都是有必要的;

 

wordpress 去掉“wordpress.org”步骤:

 

1、进入文件夹

一般情况下,路径是:根目录\wp-includes\widgets

 

2、找到 class-wp-widget-meta.php

 

3、修改 class-wp-widget-meta.php

一般情况下,我们只需要修改60行~75行代码即可,这几行代码就是主要输出“wordpress.org”的,可以选择删除,也可以选择屏蔽;我是选择的后者:

  1. <?php
  2.             /**
  3.              * Filters the "Powered by WordPress" text in the Meta widget.
  4.              *
  5.              * @since 3.6.0
  6.              *
  7.              * @param string $title_text Default title text for the WordPress.org link.
  8.              */
  9.             echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
  10.                 esc_url( __( 'https://wordpress.org/' ) ),
  11.                 esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
  12.                 _x( 'WordPress.org', 'meta widget link text' )
  13.             ) );
  14.             wp_meta();
  15.             ?>

修改为

  1. <?php
  2.             /**
  3.              * Filters the "Powered by WordPress" text in the Meta widget.
  4.              *
  5.              * @since 3.6.0
  6.              *
  7.              * @param string $title_text Default title text for the WordPress.org link.
  8.              
  9.             echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
  10.                 esc_url( __( 'https://wordpress.org/' ) ),
  11.                 esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
  12.                 _x( 'WordPress.org', 'meta widget link text' )
  13.             ) );
  14.             wp_meta();
  15.               */
  16.             ?>

 

4、保存并退出,刷新网站,结果如下:去掉 wordpress.org

    A+
发布日期:2017年03月21日 18:51:26  所属分类:WordPress
最后更新时间:2017-03-21 18:51:26
付杰
  • ¥ 15.0元
  • 市场价:15.0元
  • ¥ 89.0元
  • 市场价:129.0元
  • ¥ 69.0元
  • 市场价:69.0元
  • ¥ 298.0元
  • 市场价:598.0元

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: