你好多莉
删除
Akismet
垃圾邮件保护
WP Statistics 插件
- 常规设置,启用 缓存兼容
- 访问识别,启用GeoIP 收集
- 启用搜索引擎跟踪
- User Data Protection:取消
Wordfence Security
“rest_cannot_create”错误:所有选项,防火墙选项,强力保护,其他选项,取消“禁用WordPress应用程序密码 ”
query-monitor
WordPress 的开发人员工具面板。
Relevanssi(不推荐,中文支持不好)
搜索插件。
记得不定期 重新index。
Relevanssi Live Ajax(不推荐,中文支持不好)
wordpress默认的搜索供能很傻逼,会把超链接的网址也作为搜索内容……
wp super cache
-
通用:启用缓存
-
预缓存
-
每30分钟刷新预缓存文件(设置为0则禁用,至少10分钟。)
-
预缓存模式(垃圾回收器已禁用。推荐。)
-
预缓存标签,分类以及其他。
-
页面源代码
<!-- Dynamic page generated in 0.030 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2023-11-12 11:44:50 -->
<!-- super cache -->
Redis Object Cache
redis默认是16个库(编号0-15),各个站设为不同值即可,比如改成1或者2、3、4、5、6等等。
参考: redis-cache/INSTALL.md at develop · rhubarbgroup/redis-cache (github.com)
注意在以下行之前添加配置:
/* That's all, stop editing! Happy publishing. */
require_once(ABSPATH . 'wp-settings.php');
vi /yinheco/wp-config.php, 将以下代码放在数据库相关设置的后面,不要放在文件末尾。
/* Redis 插件配置 */
/* 参考:https://github.com/rhubarbgroup/redis-cache/blob/develop/INSTALL.md */
// adjust Redis host and port if necessary
define( 'WP_REDIS_HOST', '127.0.0.1' );
define( 'WP_REDIS_PORT', 6379 );
// change the prefix and database for each site to avoid cache data collisions
define( 'WP_REDIS_PREFIX', 'my-moms-site' );
define( 'WP_REDIS_DATABASE', 2 ); // 0-15
// reasonable connection and read+write timeouts
define( 'WP_REDIS_TIMEOUT', 1 );
define( 'WP_REDIS_READ_TIMEOUT', 1 );
// redis 有效期:5分钟
define( 'WP_REDIS_MAXTTL', 300 );
define( 'WP_CACHE_KEY_SALT', 'redis_salt_yinheco' );
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';
设置完成后, wordpress 后台重启 Redis Object Cache 插件,页面源代码有如下类似内容:
<!--
Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com
使用 Predis (v2.1.2) 从 Redis 检索了 586 个对象 (72 KB)。
-->
Yet Another Related Posts Plugin
相关文章。
- Post types to include: 文章
- 匹配值:0.5
- 标题:参考
- 正文:参考
- 分类目录:不参考
- 标签:不参考
- Automatically display related content on: 文章
- Maximum number of posts:5
- Theme:List
- 无匹配时:这里删除留空
Sticky Posts Switch
置顶帖子
其他
-
最后安装设置缓存插件
-
所有已经安装插件:启动自动更新
正文完