前言:
你是否对 WordPress 主题的加载速度感到不满意,甚至考虑放弃使用?如果你正在忍受这个问题,不妨学习一些简单的 WordPress 主题加速技巧,只需复制粘贴即可提升网站速度 100%!这样你就能省下将近 2000 元的网站速度优化费用。
优化步骤:
登录后台 – [ 外观 ] – [主题编辑器] 找到 functions.php,
也可以自行登录服务器到网站主题目录,一般路径是/wp-content/themes/主题名称,打开 functions.php 文件进行编辑。
复制你需要的功能到文件内保存即可,如下图:
一.关闭 emoji 表情
/** * 关闭 emoji 表情 */ function disable_emojis(){ remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('admin_print_scripts', 'print_emoji_detection_script'); remove_action('wp_print_styles', 'print_emoji_styles'); remove_action('admin_print_styles', 'print_emoji_styles'); remove_filter('the_content_feed', 'wp_staticize_emoji'); remove_filter('comment_text_rss', 'wp_staticize_emoji'); remove_filter('wp_mail', 'wp_staticize_emoji_for_email'); add_filter('tiny_mce_plugins', 'disable_emojis_tinymce'); } add_action('init', 'disable_emojis'); function disable_emojis_tinymce($plugins){ if (is_array($plugins)) { return array_diff($plugins, array( 'wpemoji' )); } else { return array(); } }
二、WordPress 自动更新和后台更新检查
/** * 彻底关闭 WordPress 自动更新和后台更新检查 */ // 彻底关闭自动更新 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', create_function('$a', "return null;")); // 关闭核心提示 add_filter('pre_site_transient_update_plugins', create_function('$a', "return null;")); // 关闭插件提示 add_filter('pre_site_transient_update_themes', create_function('$a', "return null;")); // 关闭主题提示 remove_action('admin_init', '_maybe_update_core'); // 禁止 WordPress 检查更新 remove_action('admin_init', '_maybe_update_plugins'); // 禁止 WordPress 更新插件 remove_action('admin_init', '_maybe_update_themes'); // 禁止 WordPress 更新主题
三、去除 WordPress 头部冗余代码
/** * 去除 WordPress 头部冗余代码 */ remove_action('wp_head', 'feed_links', 2); //移除 feed remove_action('wp_head', 'feed_links_extra', 3); //移除 feed remove_action('wp_head', 'rsd_link'); //移除离线编辑器开放接口 remove_action('wp_head', 'wlwmanifest_link'); //移除离线编辑器开放接口 remove_action('wp_head', 'index_rel_link'); //去除本页唯一链接信息 remove_action('wp_head', 'parent_post_rel_link', 10, 0); //清除前后文信息 remove_action('wp_head', 'start_post_rel_link', 10, 0); //清除前后文信息 remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0); // remove_action('wp_head', 'locale_stylesheet'); remove_action('publish_future_post', 'check_and_publish_future_post', 10, 1); remove_action('wp_head', 'noindex', 1); remove_action('wp_head', 'wp_generator'); //移除 WordPress 版本 remove_action('wp_head', 'rel_canonical'); remove_action('wp_footer', 'wp_print_footer_scripts'); remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0); remove_action('template_redirect', 'wp_shortlink_header', 11, 0); function my_remove_recent_comments_style(){ global $wp_widget_factory; remove_action('wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' )); } add_action('widgets_init', 'my_remove_recent_comments_style');
四、禁用后台自动保存
/* * 禁用后台自动保存 */ add_action('admin_print_scripts', create_function('$a', "wp_deregister_script('autosave');"));
五、关闭文章修订版本
/** * 关闭文章修订版本 */ add_filter('wp_revisions_to_keep', 'specs_wp_revisions_to_keep', 10, 2); function specs_wp_revisions_to_keep($num, $post){ return 0; }
六、去除后台首页面板的功能
/** * 去除后台首页面板的功能 */ add_action('wp_dashboard_setup', 'cqr_remove_dashboard_widgets'); function cqr_remove_dashboard_widgets(){ global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['normal']); unset($wp_meta_boxes['dashboard']['side']); }
七、移除 WordPress 头部加载 DNS 预获取(dns-prefetch)
/** * 移除 WordPress 头部加载 DNS 预获取(dns-prefetch) */ function remove_dns_prefetch( $hints, $relation_type ) { if ( 'dns-prefetch' === $relation_type ) { return array_diff( wp_dependencies_unique_hosts(), $hints ); } return $hints; } add_filter( 'wp_resource_hints', 'remove_dns_prefetch', 10, 2 );
八、删除不常用的自定义仪表板
/** * 自定义仪表板 * 删除这些 Dashboard 构件 */ function remove_dashboard_widgets(){ global $wp_meta_boxes; unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_drafts']); unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']); unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']); } add_action('wp_dashboard_setup', 'remove_dashboard_widgets', 11);
九、缓存媒体文件获取的月份
/** * 缓存媒体文件获取的月份 */ add_filter('media_library_months_with_files', function($months){ $months= get_transient('doocii_media_library_months'); if($months === false) { global $wpdb; $months = $wpdb->get_results("SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month FROM $wpdb->posts WHERE post_type = 'attachment' ORDER BY post_date DESC"); set_transient('doocii_media_library_months', $months, WEEK_IN_SECONDS); } return $months; }); // 删除附件月份的缓存 function doocii_delete_media_library_months_cache(){ delete_transient('doocii_media_library_months'); } add_action('edit_attachment', 'doocii_delete_media_library_months_cache'); add_action('add_attachment', 'doocii_delete_media_library_months_cache'); add_action('delete_attachment', 'doocii_delete_media_library_months_cache');
十、屏蔽文章 Embed 功能
/** * 屏蔽文章 Embed 功能,添加带 embed 或视频链接到编辑器中,转不会被转换。 */ remove_action('rest_api_init', 'wp_oembed_register_route'); remove_filter('rest_pre_serve_request', '_oembed_rest_pre_serve_request', 10, 4); add_filter('embed_oembed_discover', '__return_false'); remove_filter('oembed_dataparse', 'wp_filter_oembed_result', 10); remove_filter('oembed_response_data', 'get_oembed_response_data_rich', 10, 4); remove_action('wp_head', 'wp_oembed_add_discovery_links'); remove_action('wp_head', 'wp_oembed_add_host_js'); add_filter('tiny_mce_plugins', 'cqr_disable_post_embed_tiny_mce_plugin'); function cqr_disable_post_embed_tiny_mce_plugin($plugins){ return array_diff($plugins, array('wpembed')); } add_filter('query_vars', 'cqr_disable_post_embed_query_var'); function cqr_disable_post_embed_query_var($public_query_vars){ return array_diff($public_query_vars, array('embed')); }
十一、禁用 Auto Embeds 功能
Auto Embeds 基本不支持国内网站,因此我们禁用了该功能,以加快页面解析速度。
/** * 禁用 Auto Embeds 功能。 */ remove_filter('the_content', array($GLOBALS['wp_embed'], 'run_shortcode'), 8); remove_filter('the_content', array($GLOBALS['wp_embed'], 'autoembed'), 8); remove_action('pre_post_update', array($GLOBALS['wp_embed'], 'delete_oembed_caches')); remove_action('edit_form_advanced', array($GLOBALS['wp_embed'], 'maybe_run_ajax_cache'));
十二、禁用 WooCommerce 块的 CSS 样式
/** * 禁用 WooCommerce 块的 CSS 样式 */ function themesharbor_disable_woocommerce_block_styles() { wp_dequeue_style( 'wc-blocks-style' ); } add_action( 'wp_enqueue_scripts', 'themesharbor_disable_woocommerce_block_styles' );
十三、禁用 WordPress 4.4+ 的响应式图片功能
/** * 禁用 WordPress 4.4+ 的响应式图片功能 */ add_filter('max_srcset_image_width', create_function('', 'return 1;')); /** * 删除 WordPress 核心音频/视频播放器 */ wp_deregister_script('wp-mediaelement'); wp_deregister_style('wp-mediaelement');
十四、禁用讨论中的头像显示功能
方法一:在网站后台,点击[讨论],然后选择[头像],取消勾选[显示头像]选项,这样可以明显提高国内网站的加载速度。
方法二(替换默认头像):
/** * 删除 WordPress 核心音频/视频播放器 */ define('DEFAULT_AVATAR_URL', '//xxx.xxx.com/imgs/2024/12/gravatar.jpeg'); function no_gravatars( $avatar ) { return preg_replace( "/http.*?gravatar\.com[^\']*/", DEFAULT_AVATAR_URL, $avatar ); } add_filter( 'get_avatar', 'no_gravatars' );
结语:
还在为网站前端加载缓慢、后台登录卡顿而烦恼吗?不妨试试这些方法,让你的网站焕然一新,前端展示流畅顺滑,后台登录迅速敏捷,轻松畅享如飞般的高效操作体验!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。Bzdrj.com 本站分享的WordPress主题/插件均遵循GPLv2 许可协议(免费开源),相关介绍资料仅供参考,实际版本可能会因版本迭代或开发者调整而产生变化。如程序中涉及有第三方原创图像、设计模板、远程服务等内容,应获得作者授权后方可使用。本站不提供该程序/软件的产品授权与技术服务,亦不收取相关费用。
评论(0)