前面已经写了“利用七牛云存储CDN服务给WordPress静态文件加速”,我推荐使用我爱水煮鱼
的 七牛镜像存储 WordPress 插件 ,需要先安装 WPJAM, 其实顺序无所谓先安装第一个也会提示安装另一个。如果安装 WPJAM 过程提示没有标题之类的错误不用管不会影响使用的。
安装完之后打开七牛云存储:
填入cdn的网址 空间名填写在七牛创建的空间名, AccessKey/SecretKey 在七牛的网页上 个人面板——密钥管理
中可以找到然后保存更改就可以了。
下面介绍去除wordpress功能下面的文章 RSS、评论 RSS、WordPress.org方法,用记事本打开\wp-includes\widgets\class-wp-widget-meta.php
1、删除功能下面的WordPress.org
找到如下文本:
/** * Filters the "Powered by WordPress" text in the Meta widget. * * @since 3.6.0 * * @param string $title_text Default title text for the WordPress.org link. */ echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a title="%s">%s</a></li>', esc_url( __( 'https://wordpress.org/' ) ), esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ), _x( 'WordPress.org', 'meta widget link text' ) ) );
修改为(或直接删除):
/** * Filters the "Powered by WordPress" text in the Meta widget. * * @since 3.6.0 * * @param string $title_text Default title text for the WordPress.org link. echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>', esc_url( __( 'https://wordpress.org/' ) ), esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ), _x( 'WordPress.org', 'meta widget link text' ) ) ); */
功能下面的 WordPress.org 就可以去掉了。
2、删除功能下面的 文章 RSS
直接注释或删除下面的代码就可以了
<li> <a href="<?php echo esc_url( get_bloginfo( 'rss2_url' ) ); ?>"> <?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?> </a> </li>
3、删除功能下面的 评论 RSS
直接注释或删除下面的代码就可以了
<li> <a href="<?php echo esc_url( get_bloginfo( 'comments_rss2_url' ) ); ?>"> <?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?> </a> </li>