社区应用 最新帖子 精华区 社区服务 会员列表 统计排行
  • 633阅读
  • 4回复

[系统软件]WordPress v5.8.0官方正式版及必备优化代码

楼层直达
z3960 
级别: FLY版主
发帖
786360
飞翔币
211578
威望
215717
飞扬币
2615651
信誉值
8


WordPress,全球广泛使用的知名免费开源网站博客程序。WordPress是一种使用PHP语言开发的博客平台,用户可以在支持PHP和MySQL数据库的服务器上架设自己的网站,也可以把WordPress 当作一个内容管理系统(CMS)来使用。WordPress 还是一个免费的开源项目,在GNU通用公共许可证下授权发布。

WordPress新版必备优化代码:<!--以下代码添加到主题目录下的functions.php文件--!>/*彻底关闭自动更新(核心程序/主题/插件/翻译自动更新*/add_filter('automatic_updater_disabled', '__return_true');/*关闭更新检查定时作业*/remove_action('init', 'wp_schedule_update_checks');/*移除已有的版本检查定时作业*/wp_clear_scheduled_hook('wp_version_check');/*移除已有的插件更新定时作业*/wp_clear_scheduled_hook('wp_update_plugins');/*移除已有的主题更新定时作业*/wp_clear_scheduled_hook('wp_update_themes');/*移除已有的自动更新定时作业*/wp_clear_scheduled_hook('wp_maybe_auto_update');/*移除后台内核更新检查*/remove_action( 'admin_init', '_maybe_update_core' );/*移除后台插件更新检查*/remove_action( 'load-plugins.php', 'wp_update_plugins' );remove_action( 'load-update.php', 'wp_update_plugins' );remove_action( 'load-update-core.php', 'wp_update_plugins' );remove_action( 'admin_init', '_maybe_update_plugins' );/*移除后台主题更新检查*/remove_action( 'load-themes.php', 'wp_update_themes' );remove_action( 'load-update.php', 'wp_update_themes' );remove_action( 'load-update-core.php', 'wp_update_themes' );remove_action( 'admin_init', '_maybe_update_themes' );/*关闭程序更新提示*/add_filter( 'pre_site_transient_update_core', function($a){ return null; });/*关闭插件更新提示*/add_filter('pre_site_transient_update_plugins', function($a){return null;});/*关闭主题更新提示*/add_filter('pre_site_transient_update_themes', function($a){return null;});//关闭WordPress的XML-RPC功能add_filter('xmlrpc_enabled', '__return_false');//关闭XML-RPC的 pingback端口add_filter( 'xmlrpc_methods', 'remove_xmlrpc_pingback_ping' );function remove_xmlrpc_pingback_ping( $methods ) {unset( $methods['pingback.ping'] );return $methods;}//移除前端网页源代码内的头部冗余代码remove_action( 'wp_head', 'feed_links_extra', 3 );remove_action( 'wp_head', 'rsd_link' );remove_action( 'wp_head', 'wlwmanifest_link' );remove_action( 'wp_head', 'index_rel_link' );remove_action( 'wp_head', 'start_post_rel_link', 10, 0 );remove_action( 'wp_head', 'wp_generator' );//移除新版本站点健康状态面板和菜单项add_action( 'admin_menu', 'remove_site_health_menu' );function remove_site_health_menu(){remove_submenu_page( 'tools.php','site-health.php' );}//禁用5.5版后自带的XML站点地图add_filter( 'wp_sitemaps_enabled', '__return_false' );//移除后台仪表盘站点健康状态面板add_action('wp_dashboard_setup', 'remove_site_health_dashboard_widget');function remove_site_health_dashboard_widget(){remove_meta_box('dashboard_site_health', 'dashboard', 'normal');}//移除后台仪表盘菜单:站点健康状态add_action( 'admin_menu', 'remove_site_health_menu' );function remove_site_health_menu(){remove_submenu_page( 'tools.php','site-health.php' );}//移除后台仪表盘菜单:活动、新闻function bzg_remove_dashboard_widgets() {global $wp_meta_boxes;#移除 "活动" 模块unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']);#移除 "WordPress 新闻" 模块unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);}add_action('wp_dashboard_setup', 'bzg_remove_dashboard_widgets' );#移除后台仪表盘菜单:帮助function bzg_remove_help() {get_current_screen()->remove_help_tabs();}add_action('admin_head', 'bzg_remove_help');//移除后台页面title标题的wordpress后缀add_filter('admin_title', 'delAdminTitle', 10, 2);function delAdminTitle($admin_title, $title){return $title.' ‹ '.get_bloginfo('name');}//移除登陆页面title标题的wordpress后缀add_filter('login_title', 'remove_login_title', 10, 2);function remove_login_title($login_title, $title){return $title.' ‹ '.get_bloginfo('name');}//切换经典文章编辑器(v5.x开始默认古腾堡编辑器)add_filter('use_block_editor_for_post', '__return_false');//禁止WordPress新版本文章编辑器前端加载样式文件remove_action( 'wp_enqueue_scripts', 'wp_common_block_scripts_and_styles' );//替换评论用户头像链接为国内镜像加速访问add_filter('get_avatar', function ($avatar) {return str_replace(['www.gravatar.com/avatar/','0.gravatar.com/avatar/','1.gravatar.com/avatar/','2.gravatar.com/avatar/','secure.gravatar.com/avatar/','cn.gravatar.com/avatar/'], 'gravatar.wp-china-yes.net/', $avatar);});
新版变化
https://wordpress.org/news/
系统要求
v5.x 最低系统环境需求
PHP 5.6.20或更高版本,建议7.2稳定版
MySQL 5.6或更高版本,建议5.6.50稳定版
下载地址
WordPress 5.8 官方简体中文正式版 [2021/07/20]
https://cn.wordpress.org/download/releases
https://cn.wordpress.org/wordpress-5.8-zh_CN.zip
https://cn.wordpress.org/wordpress-5.8-zh_CN.tar.gz
我不喜欢说话却每天说最多的话,我不喜欢笑却总笑个不停,身边的每个人都说我的生活好快乐,于是我也就认为自己真的快乐。可是为什么我会在一大群朋友中突然地就沉默,为什么在人群中看到个相似的背影就难过,看见秋天树木疯狂地掉叶子我就忘记了说话,看见天色渐晚路上暖黄色的灯火就忘记了自己原来的方向。
级别: 终身优会
发帖
339410
飞翔币
105
威望
4220
飞扬币
2216
信誉值
0

只看该作者 1 发表于: 2021-07-22
感谢楼主分享!飞扬有你更精彩!
级别: 终身优会
发帖
339410
飞翔币
105
威望
4220
飞扬币
2216
信誉值
0

只看该作者 2 发表于: 2021-07-22
支持楼主,在飞扬我很看好你!
级别: 超级版主
发帖
883800
飞翔币
253143
威望
224883
飞扬币
2706945
信誉值
0

只看该作者 3 发表于: 2021-07-23
支持一下了
级别: 超级版主
发帖
883800
飞翔币
253143
威望
224883
飞扬币
2706945
信誉值
0

只看该作者 4 发表于: 2021-07-23
谢谢分享