wordpress删除“功能”中的 RSS链接

December 09, 2023
测试
测试
测试
测试
2 分钟阅读

本次操作以wordpress-3.6.1为例,其它版本,操作上,大同小异 打开“网站\wp-includes\default-widgets.php” 搜索如下代码:

  • <?php wp\_loginout(); ?>

删除以下代码

  • <?php \_e('Entries RSS'); ?>
  • <?php \_e('Comments RSS'); ?>

<?php /\*\* \* Filter 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( '

  • %s

', 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' ) ) ); wp\_meta(); ?> 第1个

为文章RSS 第2个

为评论RSS 第3段<?php\*\*\*\*\*\*?>为WordPress.org链接 全部删除后的效果

WordPress-rss
WordPress-rss

(opens new window) 转载自生命线电脑技术(opens new window),由我适当修改。 地址:http://smxr.com/post/114.htm(opens new window)

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多